Food Update (#2223)

* new food

* Changelog

* Removed venus requirement so players could craft cheese now

* molecular diagrams
This commit is contained in:
Redeix 2025-11-16 18:54:32 -06:00 committed by GitHub
parent 0e806878b9
commit b69645a263
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 1656 additions and 111 deletions

View file

@ -113,7 +113,7 @@ global.VENUS_BIOMES = [
'tfg:venus/salt_flats',
'tfg:venus/stromatolite_beach',
'tfg:venus/sulfuric_ravine',
'tfg:venus/volcanic_mountains',
'tfg:venus/volcanic_mountains'
]
/**
@ -311,7 +311,8 @@ global.WARMING_FOODS = [
'tfc:food/fruit_soup',
'tfc:food/vegetables_soup',
'tfc:food/protein_soup',
'tfc:food/dairy_soup'
'tfc:food/dairy_soup',
'tfg:food/poutine'
];
/**
@ -325,4 +326,23 @@ global.LAB_EQUIPMENT_CONTAINERS = [
{type: 'beaker', capacity: 1296},
{type: 'flask', capacity: 144},
{type: 'vial', capacity: 16}
];
];
/**
* @typedef {Object} spices
* @property {string} plant - Spice Plant
* @property {string} product - Spice Product
*/
/** @type {spices[]} - Item IDs */
global.SPICES = [
// Cinnamon is not obtainable so im not including it yet.
{ plant: 'firmalife:plant/basil', product: 'firmalife:spice/basil_leaves' },
{ plant: 'firmalife:plant/vanilla', product: 'firmalife:spice/vanilla' },
// New spices V
{ plant: 'firmalife:plant/bay_laurel', product: 'tfg:spice/bay_leaf' },
{ plant: 'firmalife:plant/cardamom', product: 'tfg:spice/cardamom_pods' },
{ plant: 'firmalife:plant/cilantro', product: 'tfg:spice/cilantro_leaves' },
{ plant: 'firmalife:plant/cumin', product: 'tfg:spice/cumin_seeds' },
{ plant: 'firmalife:plant/oregano', product: 'tfg:spice/oregano_leaves' },
{ plant: 'firmalife:plant/pimento', product: 'tfg:spice/allspice' }
];