Skip to content

Commit

Permalink
Die item + texture
Browse files Browse the repository at this point in the history
  • Loading branch information
ATPStorages committed Aug 29, 2024
1 parent 12763fb commit dfd9f00
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ internal class USEnglishLanguageProvider(
add(ModBlocks.ENERGY_STORAGE_BLOCK)
add(ModItems.BAGEL)
add(ModItems.HALF_BAGEL)
add(ModItems.DIE)
add(ModBlocks.SOUND_BLOCK)
add(ModBlocks.RANDOM_SOUND_BLOCK, "Random Sound Generator")
modAdd("Harnesses the power of a pair of dice to make the most incomprehensible sounds imaginable.",
Expand Down
9 changes: 5 additions & 4 deletions src/main/kotlin/breadmod/registry/item/ModItems.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ package breadmod.registry.item
import breadmod.ModMain
import breadmod.datagen.tool_gun.BreadModToolGunModeProvider.Companion.TOOL_GUN_DEF
import breadmod.item.*
import breadmod.registry.sound.ModSounds
import breadmod.item.TieredBreadAmuletItem.BreadAmuletType
import breadmod.item.armor.ArmorTiers
import breadmod.item.armor.BreadArmorItem
import breadmod.item.compat.projecte.BreadOrbItem
import breadmod.item.tool_gun.ToolGunItem
import breadmod.item.tool.BreadShieldItem
import breadmod.item.tool.ToolTiers
import breadmod.item.TieredBreadAmuletItem.BreadAmuletType
import breadmod.item.tool.KnifeItem
import breadmod.item.tool.ToolTiers
import breadmod.item.tool_gun.ToolGunItem
import breadmod.registry.sound.ModSounds
import moze_intel.projecte.gameObjs.items.ItemPE
import net.minecraft.ChatFormatting
import net.minecraft.network.chat.Component
Expand Down Expand Up @@ -50,6 +50,7 @@ object ModItems {
}
val FLOUR: RegistryObject<Item> = deferredRegister.register("flour") { Item(Item.Properties()) }
val DOUGH: RegistryObject<Item> = deferredRegister.register("dough") { Item(Item.Properties()) }
val DIE: RegistryObject<Item> = deferredRegister.register("die") { Item(Item.Properties()) }

// todo better knife texture
val KNIFE: RegistryObject<KnifeItem> = deferredRegister.register("knife") {
Expand Down
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 dfd9f00

Please sign in to comment.