This commit is contained in:
Pyritie 2025-07-01 01:12:38 +01:00
parent 009ce97d61
commit 9107d124a8
4 changed files with 29 additions and 23 deletions

View file

@ -11,27 +11,17 @@
"entries": [ "entries": [
{ {
"type": "minecraft:item", "type": "minecraft:item",
"name": "firmalife:cheddar_wheel" "name": "ad_astra:cheese",
}, "functions": [
{ {
"type": "minecraft:item", "function": "minecraft:set_count",
"name": "firmalife:chevre_wheel" "count": {
}, "min": 2,
{ "max": 5,
"type": "minecraft:item", "type": "minecraft:uniform"
"name": "firmalife:rajya_metok_wheel" }
}, }
{ ]
"type": "minecraft:item",
"name": "firmalife:gouda_wheel"
},
{
"type": "minecraft:item",
"name": "firmalife:feta_wheel"
},
{
"type": "minecraft:item",
"name": "firmalife:shosha_wheel"
} }
], ],
"rolls": 1.0 "rolls": 1.0

View file

@ -11,7 +11,17 @@
"entries": [ "entries": [
{ {
"type": "minecraft:item", "type": "minecraft:item",
"name": "firmalife:food/shredded_cheese" "name": "ad_astra:cheese",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 1,
"max": 2,
"type": "minecraft:uniform"
}
}
]
} }
], ],
"rolls": 1.0 "rolls": 1.0

View file

@ -10,4 +10,11 @@ function registerTFCDataForAdAstra(event) {
event.itemSize('ad_astra:tier_1_rover', 'very_large', 'very_heavy') event.itemSize('ad_astra:tier_1_rover', 'very_large', 'very_heavy')
event.itemSize('ad_astra:launch_pad', 'very_large', 'very_heavy') event.itemSize('ad_astra:launch_pad', 'very_large', 'very_heavy')
event.foodItem('ad_astra:cheese', food => {
food.hunger(4)
food.saturation(12)
food.dairy(5)
food.decayModifier(10)
})
} }

View file

@ -18,7 +18,6 @@ global.AD_ASTRA_DISABLED_ITEMS =
'ad_astra:water_pump', 'ad_astra:water_pump',
'ad_astra:cryo_freezer', 'ad_astra:cryo_freezer',
'ad_astra:wrench', 'ad_astra:wrench',
'ad_astra:cheese',
'ad_astra:cheese_block', 'ad_astra:cheese_block',
'ad_astra:photovoltaic_etrium_cell', 'ad_astra:photovoltaic_etrium_cell',
'ad_astra:photovoltaic_vesnium_cell', 'ad_astra:photovoltaic_vesnium_cell',