|
1 | 1 | package com.ryorama.terrariamod.blocks;
|
2 | 2 |
|
3 | 3 | import com.ryorama.terrariamod.TerrariaMod;
|
4 |
| -import com.ryorama.terrariamod.blocks.impl.BlockT; |
5 |
| -import com.ryorama.terrariamod.blocks.impl.CMBlockT; |
6 |
| -import com.ryorama.terrariamod.blocks.impl.PlantT; |
7 |
| -import com.ryorama.terrariamod.blocks.impl.TreeSegment; |
| 4 | +import com.ryorama.terrariamod.blocks.impl.*; |
8 | 5 | import com.ryorama.terrariamod.blocks.terraria.chests.*;
|
9 | 6 | import com.ryorama.terrariamod.blocks.terraria.world.*;
|
10 | 7 | import com.ryorama.terrariamod.client.TAudio;
|
@@ -98,10 +95,10 @@ public int applyAsInt(BlockState value) {
|
98 | 95 | public static final RegistrySupplier<Block> PLATINUM_ORE = register("platinum_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.YELLOW).sounds(TAudio.STONE), 15, 15).setPick(true));
|
99 | 96 | public static final RegistrySupplier<Block> SILVER_ORE = register("silver_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.YELLOW).sounds(TAudio.STONE), 15, 15).setPick(true));
|
100 | 97 | public static final RegistrySupplier<Block> TUNGSTEN_ORE = register("tungsten_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.YELLOW).sounds(TAudio.STONE), 15, 15).setPick(true));
|
101 |
| - public static final RegistrySupplier<Block> METEORITE_ORE = register("meteorite_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.YELLOW).sounds(TAudio.STONE), 15, 15).setPick(true)); |
| 98 | + public static final RegistrySupplier<Block> METEORITE_ORE = register("meteorite_ore", () -> new HotBlockT(AbstractBlock.Settings.create().mapColor(DyeColor.YELLOW).sounds(TAudio.STONE), 50, 50).setPick(true)); |
102 | 99 | public static final RegistrySupplier<Block> DEMONITE_ORE = register("demonite_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.PURPLE).sounds(TAudio.STONE), 15, 15).setPick(true));
|
103 | 100 | public static final RegistrySupplier<Block> CRIMTANE_ORE = register("crimtane_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.RED).sounds(TAudio.STONE), 15, 15).setPick(true));
|
104 |
| - public static final RegistrySupplier<Block> HELLSTONE_ORE = register("hellstone_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.ORANGE).sounds(TAudio.STONE), 50, 50, 10).setPick(true)); |
| 101 | + public static final RegistrySupplier<Block> HELLSTONE_ORE = register("hellstone_ore", () -> new HotBlockT(AbstractBlock.Settings.create().mapColor(DyeColor.ORANGE).sounds(TAudio.STONE), 50, 50).setPick(true)); |
105 | 102 | public static final RegistrySupplier<Block> RUBY_ORE = register("ruby_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.RED).sounds(TAudio.STONE), 15, 15).setPick(true));
|
106 | 103 | public static final RegistrySupplier<Block> SAPPHIRE_ORE = register("sapphire_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.BLUE).sounds(TAudio.STONE), 15, 15).setPick(true));
|
107 | 104 | public static final RegistrySupplier<Block> DIAMOND_ORE = register("diamond_ore", () -> new BlockT(AbstractBlock.Settings.create().mapColor(DyeColor.BLUE).sounds(TAudio.STONE), 15, 15).setPick(true));
|
|
0 commit comments