Initial work on Netherrack Soil.
Also added the processing for Ancient Debris and some of the intermediates for the new Hellforged Ingots (no uses yet).
This commit is contained in:
parent
1ae356c886
commit
032e163795
62 changed files with 826 additions and 8 deletions
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "bloodmagic:block/dungeon_metal"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"moisture=0": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=1": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=2": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=3": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=4": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=5": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=6": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
},
|
||||
"moisture=7": {
|
||||
"model": "bloodmagic:block/nether_soil"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -96,10 +96,12 @@
|
|||
"item.bloodmagic.etherealslate": "Ethereal Slate",
|
||||
"item.bloodmagic.explosivepowder": "Explosive Powder",
|
||||
"item.bloodmagic.firescribetool": "Inscription Tool: Fire",
|
||||
"item.bloodmagic.fragment_netherite_scrap": "Ancient Debris Fragment",
|
||||
"item.bloodmagic.furnacecell_primitive": "Primitive Fuel Cell",
|
||||
"item.bloodmagic.goldfragment": "Gold Ore Fragment",
|
||||
"item.bloodmagic.goldgravel": "Gold Gravel",
|
||||
"item.bloodmagic.goldsand": "Gold Sand",
|
||||
"item.bloodmagic.gravel_netherite_scrap": "Ancient Debris Gravel",
|
||||
"item.bloodmagic.growthsigil": "Sigil of the Green Grove",
|
||||
"item.bloodmagic.icesigil": "Sigil of the Frozen Lake",
|
||||
"item.bloodmagic.infusedslate": "Imbued Slate",
|
||||
|
@ -131,6 +133,7 @@
|
|||
"item.bloodmagic.ritualtinkerer": "Ritual Tinkerer",
|
||||
"item.bloodmagic.sacrificialdagger": "Sacrificial Knife",
|
||||
"item.bloodmagic.saltpeter": "Saltpeter",
|
||||
"item.bloodmagic.sand_netherite": "Netherite Scrap Sand",
|
||||
"item.bloodmagic.sanguinereverter": "Sanguine Reverter",
|
||||
"item.bloodmagic.seersigil": "Seer's Sigil",
|
||||
"item.bloodmagic.sigilofmagnetism": "Sigil of Magnetism",
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "bloodmagic:block/dungeon/dungeon_metal"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_farmland",
|
||||
"textures": {
|
||||
"top": "bloodmagic:block/nether_soil",
|
||||
"dirt": "minecraft:block/netherrack"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/corrupted_dust"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/corrupted_tinydust"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/dungeon_metal"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/fragment_netherite_scrap"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/gravel_netherite_scrap"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/ingot_hellforged"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "bloodmagic:block/nether_soil"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/sand_hellforged"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "bloodmagic:item/sand_netherite"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue