more stuff for the volcano biome
This commit is contained in:
parent
17ff3d9566
commit
5d4fd1c739
55 changed files with 896 additions and 124 deletions
|
|
@ -93,12 +93,11 @@ function registerTFGVenusBlockTags(event) {
|
|||
event.add('ad_astra:venus_stone_replaceables', 'tfc:raw_sandstone/red')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'tfc:sand/black')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'tfc:raw_sandstone/black')
|
||||
//event.add('ad_astra:venus_stone_replaceables', 'tfg:fluid/geyser_slurry')
|
||||
//event.add('ad_astra:venus_stone_replaceables', 'tfg:fluid/sulfur_fumes')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'minecraft:lava')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'create:scoria')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'create:scorchia')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'minecraft:tuff')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'minecraft:basalt')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'minecraft:smooth_basalt')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'betterend:brimstone')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'betterend:flavolite')
|
||||
event.add('ad_astra:venus_stone_replaceables', 'betterend:sandy_jadestone')
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ const NEW_MOB_MAX_HP = {
|
|||
"endermanoverhaul:desert_enderman": 70,
|
||||
"ad_astra:sulfur_creeper": 60,
|
||||
"species:cliff_hanger": 75,
|
||||
"species:trooper": 20,
|
||||
|
||||
// europa mobs
|
||||
"endermanoverhaul:ice_spikes_enderman": 85,
|
||||
|
|
@ -75,6 +76,12 @@ EntityEvents.spawned((event) => {
|
|||
case "ad_astra:venus": newHP = 70;
|
||||
}
|
||||
}
|
||||
else if (type === "minecraft:magma_cube") {
|
||||
switch (dimension) {
|
||||
// use default for beneath
|
||||
case "ad_astra:venus": newHp = entity.health * 6;
|
||||
}
|
||||
}
|
||||
|
||||
if (newHP === 0)
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -14,9 +14,16 @@ TFCEvents.selectClimateModel(event => {
|
|||
event.setModel('tfg:mars_climate');
|
||||
break;
|
||||
|
||||
case 'ad_astra:venus':
|
||||
event.setModel('tfg:venus_climate');
|
||||
break;
|
||||
|
||||
case 'ad_astra:earth_orbit':
|
||||
case 'ad_astra:moon_orbit':
|
||||
case 'ad_astra:mars_orbit':
|
||||
case 'ad_astra:venus_orbit':
|
||||
case 'ad_astra:mercury_orbit':
|
||||
case 'ad_astra:glacio_orbit':
|
||||
event.setModel('tfg:orbit_climate');
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue