Add ore indicators as items placed on the ground
Item placing on the ground is added by Draconic Evolution, I used a janky way to setblock generated indicator to that tile. That tile needs nbt so I had to set a block using execute as setblock command, which is bad, because it spams logs and operators chat
This commit is contained in:
parent
8c5f469cc3
commit
2d1a2f14e5
5 changed files with 100 additions and 4 deletions
|
@ -5,6 +5,12 @@
|
|||
"block": "thermalfoundation:ore",
|
||||
"meta": 0
|
||||
},
|
||||
"indicator": {
|
||||
"blocks": "contenttweaker:juice/internal/indicator/copper",
|
||||
"ignore_vegatation": false,
|
||||
"ignore_liquids": false,
|
||||
"rarity": 24
|
||||
},
|
||||
"stone": "minecraft:stone",
|
||||
"rarity": 160,
|
||||
"min_y": 8,
|
||||
|
@ -20,6 +26,12 @@
|
|||
"block": "forestry:resources",
|
||||
"meta": 0
|
||||
},
|
||||
"indicator": {
|
||||
"blocks": "contenttweaker:juice/internal/indicator/apatite",
|
||||
"ignore_vegatation": false,
|
||||
"ignore_liquids": false,
|
||||
"rarity": 24
|
||||
},
|
||||
"stone": "minecraft:stone",
|
||||
"rarity": "100",
|
||||
"min_y": -10,
|
||||
|
@ -35,9 +47,9 @@
|
|||
"ore": "minecraft:gold_ore",
|
||||
"stone": "minecraft:stone",
|
||||
"indicator": {
|
||||
"blocks": "minecraft:gold_ore",
|
||||
"blocks": "contenttweaker:juice/internal/indicator/gold",
|
||||
"ignore_vegatation": false,
|
||||
"ignore_liquids": true,
|
||||
"ignore_liquids": false,
|
||||
"rarity": 24
|
||||
},
|
||||
"rarity": 170,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue