mars snow (#1931)
* bare bones * snow piled tag * added climate restriction to quicksand, added powder snow up north * better tagging * langs * assets * missed feature in deep desert * remove waves from mars * climate tweaks * icicles and dry ice stuff * langs
This commit is contained in:
parent
ca46b12ebe
commit
16ae9167a8
35 changed files with 235 additions and 65 deletions
|
|
@ -876,7 +876,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.maxTemp(-99)
|
||||
climate.maxTemp(-100)
|
||||
},
|
||||
faunaData => {
|
||||
faunaData.solidGround(true)
|
||||
|
|
@ -885,7 +885,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-95)
|
||||
climate.minTemp(-97)
|
||||
climate.maxTemp(-30)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
|
|
@ -896,7 +896,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-85)
|
||||
climate.minTemp(-95)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -906,7 +906,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-95)
|
||||
climate.minTemp(-105)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -916,7 +916,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-100)
|
||||
climate.minTemp(-102)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -926,7 +926,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-85)
|
||||
climate.minTemp(-90)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -936,7 +936,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-105)
|
||||
climate.minTemp(-106)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -946,7 +946,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-85)
|
||||
climate.minTemp(-90)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -956,7 +956,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-95)
|
||||
climate.minTemp(-100)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
@ -966,7 +966,7 @@ function registerTFGFauna(event) {
|
|||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-95)
|
||||
climate.minTemp(-100)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@ TFCEvents.worldgenData(event => {
|
|||
|
||||
event.forestEntry('tfg:mars/crimson_forest_entry',
|
||||
climate => {
|
||||
climate.maxTemp(-26)
|
||||
climate.minTemp(-98)
|
||||
climate.maxTemp(-24)
|
||||
climate.minTemp(-101)
|
||||
climate.minRain(-12)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
|
|
@ -75,7 +75,7 @@ TFCEvents.worldgenData(event => {
|
|||
|
||||
event.forestEntry('tfg:mars/aeronos_forest_entry',
|
||||
climate => {
|
||||
climate.minTemp(-87)
|
||||
climate.minTemp(-92)
|
||||
climate.minRain(-14)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
|
|
@ -98,7 +98,7 @@ TFCEvents.worldgenData(event => {
|
|||
|
||||
event.forestEntry('tfg:mars/strophar_forest_entry',
|
||||
climate => {
|
||||
climate.minTemp(-83)
|
||||
climate.minTemp(-92)
|
||||
climate.maxRain(2)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
|
|
@ -143,7 +143,7 @@ TFCEvents.worldgenData(event => {
|
|||
|
||||
event.forestEntry('tfg:mars/glacian_forest_entry',
|
||||
climate => {
|
||||
climate.maxTemp(-87)
|
||||
climate.maxTemp(-92)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
'tfg:glacian_wood_stripped',
|
||||
|
|
|
|||
|
|
@ -1086,6 +1086,13 @@ const registerTFGBlockTags = (event) => {
|
|||
event.add('tfg:decorative_plant_attachable', 'minecraft:warped_wart_block')
|
||||
event.add('tfg:decorative_plant_attachable', 'betterend:cave_bush')
|
||||
event.add('tfg:decorative_plant_attachable', 'betterend:lucernia_leaves')
|
||||
|
||||
event.add('minecraft:mineable/pickaxe', 'tfg:mars_ice')
|
||||
event.add('minecraft:mineable/pickaxe', 'tfg:dry_ice')
|
||||
event.add('tfcambiental:cold_stuff', 'tfg:mars_ice')
|
||||
event.add('tfcambiental:cold_stuff', 'tfg:dry_ice')
|
||||
event.add('minecraft:ice', 'tfg:mars_ice')
|
||||
event.add('minecraft:ice', 'tfg:dry_ice')
|
||||
}
|
||||
//#endregion
|
||||
|
||||
|
|
@ -1117,7 +1124,6 @@ const registerTFGFluidTags = (event) => {
|
|||
event.add('tfc:usable_in_barrel', 'gtceu:seed_oil')
|
||||
|
||||
event.add('forge:liquid', 'tfg:semiheavy_ammoniacal_water')
|
||||
event.add('waves:has_waves', 'tfg:semiheavy_ammoniacal_water')
|
||||
event.add('tfc:any_water', 'tfg:semiheavy_ammoniacal_water')
|
||||
event.add('tfc:hydrating', 'tfg:semiheavy_ammoniacal_water')
|
||||
event.add('tfc:drinkables', 'tfg:semiheavy_ammoniacal_water')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue