* - Yeast recipe conflict fix * - Fixed seed oil voiding in barrels. And item weight inconsistency. * - Reduced loading screen logo size by 4MB * - Update Changelog * - Compressed loading screen images to maybe help with ram * - Added default gui scale to make the main menu look better on first launch * - Update Changelog * - Added utility script for adding circuits to existing recipes * fixed changelog conflict Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com> * - Added harvest baskets * - Fixed baked potato recipe mixing from oven * - Allowed elytras to be repaired regardless of damage * - Fixed sea water barrel recipe * - Gave plants tags to bushes so they can have other uses * - Pushed stubborn models * - updated Changelog * - Changelog typo * - Integrated Ad Astra wood * - Updated changelog --------- Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com>
24 lines
No EOL
672 B
JavaScript
24 lines
No EOL
672 B
JavaScript
// priority: 0
|
|
|
|
function registerTFCDataForAdAstra(event) {
|
|
|
|
event.itemSize('ad_astra:tier_1_rocket', 'huge', 'very_heavy')
|
|
event.itemSize('ad_astra:tier_2_rocket', 'huge', 'very_heavy')
|
|
event.itemSize('ad_astra:tier_3_rocket', 'huge', 'very_heavy')
|
|
event.itemSize('ad_astra:tier_4_rocket', 'huge', 'very_heavy')
|
|
|
|
event.itemSize('ad_astra:tier_1_rover', '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)
|
|
})
|
|
|
|
global.AD_ASTRA_WOOD.forEach(wood => {
|
|
event.fuel(wood.logs, 800, 1500, null)
|
|
})
|
|
} |