Add permafrost spell and fix dry frosted ice not being very icy
This commit is contained in:
@@ -245,6 +245,7 @@ public final class Spells {
|
||||
public static final Spell enrage = placeholder();
|
||||
public static final Spell mark_sacrifice = placeholder();
|
||||
|
||||
public static final Spell permafrost = placeholder();
|
||||
public static final Spell stormcloud = placeholder();
|
||||
public static final Spell withering_totem = placeholder();
|
||||
public static final Spell fangs = placeholder();
|
||||
@@ -464,6 +465,7 @@ public final class Spells {
|
||||
registry.register(new Enrage());
|
||||
registry.register(new MarkSacrifice());
|
||||
|
||||
registry.register(new Permafrost());
|
||||
registry.register(new Stormcloud());
|
||||
registry.register(new WitheringTotem());
|
||||
registry.register(new Fangs());
|
||||
|
||||
@@ -56,6 +56,7 @@ public final class WizardryBlocks {
|
||||
public static final Block obsidian_crust = placeholder();
|
||||
public static final Block dry_frosted_ice = placeholder();
|
||||
public static final Block crystal_flower_pot = placeholder();
|
||||
public static final Block permafrost = placeholder();
|
||||
|
||||
public static final Block runestone = placeholder();
|
||||
public static final Block runestone_pedestal = placeholder();
|
||||
@@ -120,6 +121,7 @@ public final class WizardryBlocks {
|
||||
registerBlock(registry, "obsidian_crust", new BlockObsidianCrust());
|
||||
registerBlock(registry, "dry_frosted_ice", new BlockDryFrostedIce());
|
||||
registerBlock(registry, "crystal_flower_pot", new BlockCrystalFlowerPot());
|
||||
registerBlock(registry, "permafrost", new BlockPermafrost());
|
||||
|
||||
registerBlock(registry, "runestone", new BlockRunestone(Material.ROCK));
|
||||
registerBlock(registry, "runestone_pedestal", new BlockPedestal(Material.ROCK));
|
||||
|
||||
Reference in New Issue
Block a user