кот
This commit is contained in:
parent
77e35917ba
commit
a0a21eb575
@ -398,6 +398,16 @@ object DataGen {
|
|||||||
generated(MItems.PILL_OBLIVION)
|
generated(MItems.PILL_OBLIVION)
|
||||||
generated(MItems.PILL_HEAL)
|
generated(MItems.PILL_HEAL)
|
||||||
generated(MItems.NUTRIENT_PASTE)
|
generated(MItems.NUTRIENT_PASTE)
|
||||||
|
|
||||||
|
for (item in MItems.EXOSUIT_INVENTORY_UPGRADES) {
|
||||||
|
KOT(item)
|
||||||
|
}
|
||||||
|
|
||||||
|
KOT(MItems.EXOSUIT_INVENTORY_UPGRADE_CREATIVE)
|
||||||
|
KOT(MItems.EXOSUIT_CRAFTING_UPGRADE)
|
||||||
|
KOT(MItems.EXOSUIT_INVENTORY_UPGRADE_BIG)
|
||||||
|
KOT(MItems.EXOSUIT_INVENTORY_UPGRADE_HUGE)
|
||||||
|
|
||||||
component(MItems.TRITANIUM_INGOT)
|
component(MItems.TRITANIUM_INGOT)
|
||||||
resource(MItems.TRITANIUM_ORE_CLUMP)
|
resource(MItems.TRITANIUM_ORE_CLUMP)
|
||||||
|
|
||||||
|
@ -66,6 +66,7 @@ class MatteryItemModelProvider(event: GatherDataEvent) : ItemModelProvider(event
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun generated(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "item/${it.registryName!!.path}")) }
|
fun generated(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "item/${it.registryName!!.path}")) }
|
||||||
|
fun KOT(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "block/ph_kitty")) }
|
||||||
fun generated(items: List<Item>) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "item/${it.registryName!!.path}")) }
|
fun generated(items: List<Item>) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "item/${it.registryName!!.path}")) }
|
||||||
fun generatedBlock(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "block/${it.registryName!!.path}")) }
|
fun generatedBlock(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "block/${it.registryName!!.path}")) }
|
||||||
fun generatedBlockDecorative(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "block/decorative/${it.registryName!!.path}")) }
|
fun generatedBlockDecorative(vararg items: Item) = items.forEach { generated(it, ResourceLocation(DataGen.MOD_ID, "block/decorative/${it.registryName!!.path}")) }
|
||||||
|
Loading…
Reference in New Issue
Block a user