Skip to content

Commit

Permalink
Finish cloths
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Jun 10, 2024
1 parent 3787fab commit 7c2e26b
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/mod/emt/harkenscythe/init/HSBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public static void onRegisterBlocksEvent(@Nonnull final RegistryEvent.Register<B
HSRegistry.setup(new HSBlockMaterial(Material.ROCK, MapColor.NETHERRACK, 5.0F, 5.0F, SoundType.STONE), "biomass_block").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBlockMaterial(Material.IRON, MapColor.DIAMOND, 5.0F, 10.0F, SoundType.METAL), "livingmetal_block").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBlockCreep(), "creep_block").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBlockCloth(MapColor.DIAMOND), "bloodweave_cloth").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBlockCloth(MapColor.DIAMOND), "soulweave_cloth").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBlockCloth(MapColor.RED), "bloodweave_cloth").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBlockCloth(MapColor.LIGHT_BLUE), "soulweave_cloth").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSBloodCrucible(), "blood_crucible").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSSoulCrucible(), "soul_crucible").setCreativeTab(HarkenScythe.TAB),
HSRegistry.setup(new HSSoulAltar(), "soul_altar").setCreativeTab(HarkenScythe.TAB),
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/mod/emt/harkenscythe/init/HSRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ public static void registerRecipes()
HSSoulAltarRecipes.addRecipe(Items.COOKIE, HSItems.soul_cookie, 10);
HSSoulAltarRecipes.addRecipe(Items.GLASS_BOTTLE, Items.EXPERIENCE_BOTTLE, 20);
HSSoulAltarRecipes.addRecipe(Items.IRON_INGOT, HSItems.livingmetal_ingot, 10);
HSSoulAltarRecipes.addRecipe(new ItemStack(Blocks.SAND).getItem(), new ItemStack(Blocks.SOUL_SAND).getItem(), 10); // TODO: OreDictionary
HSSoulAltarRecipes.addRecipe(PotionUtils.addPotionToItemStack(new ItemStack(Items.POTIONITEM), PotionTypes.WATER).getItem(), Items.DRAGON_BREATH, 30); // TODO: Move this to blood
HSSoulAltarRecipes.addRecipe(new ItemStack(Blocks.SAND).getItem(), new ItemStack(Blocks.SOUL_SAND).getItem(), 10); // TODO: OreDictionary
HSSoulAltarRecipes.addRecipe(new ItemStack(Blocks.WOOL).getItem(), new ItemStack(HSBlocks.soulweave_cloth).getItem(), 10); // TODO: OreDictionary
}

@SideOnly(Side.CLIENT)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"forge_marker": 1,
"defaults": {
"model": "cube_all",
"textures": {
"all": "harkenscythe:blocks/cloth_blood"
}
},
"variants": {
"normal": [
{}
],
"inventory": [
{}
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"forge_marker": 1,
"defaults": {
"model": "cube_all",
"textures": {
"all": "harkenscythe:blocks/cloth_soul"
}
},
"variants": {
"normal": [
{}
],
"inventory": [
{}
]
}
}
4 changes: 3 additions & 1 deletion src/main/resources/assets/harkenscythe/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ itemGroup.harkenscythe.tab=Harken Scythe
# BLOCKS
tile.harkenscythe.blood_crucible.name=Blood Crucible
tile.harkenscythe.biomass_block.name=Biomass Block
tile.harkenscythe.bloodweave_cloth.name=Bloodweave Cloth
tile.harkenscythe.creep_block.name=Creep Block
tile.harkenscythe.livingmetal_block.name=Block of Livingmetal
tile.harkenscythe.soul_altar.name=Altar of Souls
tile.harkenscythe.soul_cake.name=Cake of Souls
tile.harkenscythe.soul_crucible.name=Soul Crucible
tile.harkenscythe.soul_altar.name=Altar of Souls
tile.harkenscythe.soulweave_cloth.name=Soulweave Cloth

# ITEMS
item.harkenscythe.ancient_necronomicon.name=Ancient Necronomicon
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7c2e26b

Please sign in to comment.