langs, disabled unused casings

This commit is contained in:
Pyritie 2025-07-11 22:39:35 +01:00
parent 092d03fbd5
commit 8db3266ada
5 changed files with 2673 additions and 2665 deletions

View file

@ -115,7 +115,7 @@
"item.ad_astra.oxygen_bucket": "Breathable Air Bucket",
"item.ad_astra.tier_1_rover": "Rover",
"item.ad_astra.photovoltaic_etrium_cell": "Basic Photovoltaic Cell",
"item.ad_astra.photovoltaic_vesnium_cell": "Advanced Photovoltaic Cell",
"item.ad_astra.photovoltaic_vesnium_cell": "Energium Photovoltaic Cell",
"item.ad_astra.cheese": "Moon Cheese",
"tagprefix.moon_stone": "Anorthosite %s Ore",
"tagprefix.moon_deepslate": "Norite %s Ore",

View file

@ -5,6 +5,7 @@
"block.gtceu.end_dome": "Enderarium",
"block.gtceu.greenhouse": "Greenhouse",
"block.gtceu.steam_bloomery": "Steam Bloomery",
"block.gtceu.large_solar_panel": "Large Solar Panel",
"block.gtceu.copper_crate": "Copper Crate",
"block.gtceu.copper_drum": "Copper Drum",
"block.gtceu.black_bronze_crate": "Black Bronze Crate",
@ -19,6 +20,7 @@
"gtceu.steam_bloomery": "Steam Bloomery",
"gtceu.food_oven": "Food Oven",
"gtceu.food_processor": "Food Processor",
"gtceu.large_solar_panel": "Large Solar Panel",
"item.gtceu.tiny_wood_dust": "Tiny Pile of Softwood Pulp",
"item.gtceu.small_wood_dust": "Small Pile of Softwood Pulp",
"item.gtceu.wood_dust": "Softwood Pulp",

File diff suppressed because it is too large Load diff

View file

@ -193,10 +193,13 @@
"block.tfg.railgun_item_loader_in": "Interplanetary Railgun Input Bus",
"block.tfg.interplanetary_item_reciever": "Interplanetary Receiver",
"block.tfg.railgun_item_loader_out": "Interplanetary Receiver Output Bus",
"block.tfg.interplanetary_logistics_monitor": "Interplanetary Logistics Monitor",
"block.tfg.sunflower_wild": "Wild Sunflower",
"block.tfg.sunflower_dead": "Dead Sunflower",
"block.tfg.rapeseed_wild": "Wild Rapeseed",
"block.tfg.rapeseed_dead": "Dead Rapeseed",
"block.tfg.casings.machine_casing_iron_desh": "Desh Machine Casing",
"block.tfg.casings.machine_casing_red_solar_panel": "Energium Solar Panel Casing",
"block.tfg.sand.fluorapatite.blue": "Blue Fluorapatite Sand",
"block.tfg.sandstone.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone",
"block.tfg.sandstone.wall.raw.fluorapatite.blue": "Raw Blue Fluorapatite Sandstone Wall",
@ -464,6 +467,9 @@
"material.tfg.acetylene": "Acetylene",
"material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-Tetrafluoroethane",
"material.tfg.isobutane": "Isobutane",
"material.tfg.chloryl_fluoride": "Chloryl Fluoride",
"material.tfg.chlorine_pentafluoride": "Chlorine Pentafluoride",
"material.tfg.solar_coolant": "Solar Coolant",
"tfg.creative_tab.tfg": "TerraFirmaGreg",
"tfg.disabled_portal": "Portal magic seems to be blocked by an unknown force, try reaching another dimension by going down or up",
"tfg.tooltip.food_trait.refrigerating": "§bRefrigerating",

View file

@ -69,13 +69,13 @@ global.MARS_BIOMES = [
]
global.TFG_MACHINE_CASINGS = [
'machine_casing_clean_stainless_steel_desh',
'machine_casing_desh_ptfe',
//'machine_casing_clean_stainless_steel_desh',
//'machine_casing_desh_ptfe',
'machine_casing_iron_desh',
'machine_casing_ptfe_desh',
'machine_casing_stainless_steel_desh',
'machine_casing_blue_solar_panel',
'machine_casing_green_solar_panel',
//'machine_casing_ptfe_desh',
//'machine_casing_stainless_steel_desh',
//'machine_casing_blue_solar_panel',
//'machine_casing_green_solar_panel',
'machine_casing_red_solar_panel'
];