* blocks * more textures * more textures more textures * blocks * more textures * more textures more textures * blocks * more textures * more textures more textures * blocks * more textures * more textures more textures * firmalife gh stuff * chloroplasts and brick regex * gh recipes * pisciculture fishery * I am going insane * more casings = more gooder * rotten voiding cover * greenhouse glory * Is this it chat * not needed Signed-off-by: Redeix <redeix.m@gmail.com> * missed in conflicts Signed-off-by: Redeix <redeix.m@gmail.com> * consumerism * re-add tag import * remove unused object map * id normalizer function --------- Signed-off-by: Redeix <redeix.m@gmail.com>
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
"use strict";
|
|
|
|
/** @param {Internal.TFCDataEventJS} event */
|
|
function registerTFGAquaponicsData(event) {
|
|
|
|
event.fuel('tfg:flora_pellets', 1415, 1900, 0.95);
|
|
|
|
event.foodItem('tfg:fish_roe', (food) => {
|
|
food.hunger(4);
|
|
food.decayModifier(2);
|
|
food.protein(2.5);
|
|
food.saturation(2);
|
|
});
|
|
|
|
}
|