stuff and things
This commit is contained in:
parent
11d83ff913
commit
34c4bb5fb4
8 changed files with 84 additions and 9 deletions
|
|
@ -66,6 +66,7 @@ function registerTFGFoodItemTags(event) {
|
|||
event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_cruncher_ribs')
|
||||
event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_surfer_steak')
|
||||
event.add('tfg:raw_dinosaur_meat', 'wan_ancient_beasts:raw_ancient_meat')
|
||||
// TODO add meat for charger, raider, snatcher
|
||||
|
||||
/**
|
||||
* List of items that can make light stock.
|
||||
|
|
|
|||
|
|
@ -34,10 +34,8 @@ function registerTFGMarsItemTags(event) {
|
|||
event.add('tfg:martian_animal_foods', 'betterend:shadow_berry_product')
|
||||
event.add('tfg:martian_animal_foods', 'betterend:bolux_mushroom_product')
|
||||
event.add('tfg:martian_animal_foods', 'betterend:cave_pumpkin_chunks')
|
||||
|
||||
event.add('tfg:glacian_ram_food', '#tfg:martian_animal_foods')
|
||||
event.add('tfg:sniffer_food', '#tfg:martian_animal_foods')
|
||||
event.add('tfg:wraptor_food', '#tfg:martian_animal_foods')
|
||||
|
||||
event.add('tfg:martian_meat_foods', '#firmalife:foods/raw_fish')
|
||||
|
||||
event.remove('minecraft:wool', 'ad_astra:glacian_fur')
|
||||
|
||||
|
|
@ -407,6 +405,9 @@ function registerTFGMarsEntityTypeTags(event) {
|
|||
'wan_ancient_beasts:glider',
|
||||
'wan_ancient_beasts:toxlacanth',
|
||||
'wan_ancient_beasts:surfer',
|
||||
'wan_ancient_beasts:charger',
|
||||
'wan_ancient_beasts:raider',
|
||||
'wan_ancient_beasts:snatcher',
|
||||
'tfg:surfer'
|
||||
]
|
||||
|
||||
|
|
@ -420,10 +421,13 @@ function registerTFGMarsEntityTypeTags(event) {
|
|||
event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:eater')
|
||||
event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:soarer')
|
||||
event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:glider')
|
||||
event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:raider')
|
||||
event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:snatcher')
|
||||
event.add('tfc:deals_piercing_damage', 'ad_astra:martian_raptor')
|
||||
event.add('tfc:deals_crushing_damage', 'species:quake')
|
||||
event.add('tfc:deals_crushing_damage', 'wan_ancient_beasts:walker')
|
||||
event.add('tfc:deals_crushing_damage', 'wan_ancient_beasts:crusher')
|
||||
event.add('tfc:deals_crushing_damage', 'wan_ancient_beasts:charger')
|
||||
event.add('tfc:deals_slashing_damage', 'endermanoverhaul:crimson_forest_enderman')
|
||||
event.add('tfc:deals_slashing_damage', 'endermanoverhaul:warped_forest_enderman')
|
||||
event.add('tfc:deals_slashing_damage', 'endermanoverhaul:badlands_enderman')
|
||||
|
|
@ -434,11 +438,14 @@ function registerTFGMarsEntityTypeTags(event) {
|
|||
// this huge guy also looks silly in low grav
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:walker')
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:eater')
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:raider')
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:charger')
|
||||
// flying mobs
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:soarer')
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:glider')
|
||||
// swimming mobs
|
||||
event.add('tfg:ignores_gravity', 'tfg:surfer')
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:surfer')
|
||||
event.add('tfg:ignores_gravity', 'wan_ancient_beasts:toxlacanth')
|
||||
event.add('tfg:ignores_gravity', 'endermanoverhaul:coral_enderman')
|
||||
}
|
||||
|
|
|
|||
|
|
@ -86,6 +86,26 @@ function registerTFGFauna(event) {
|
|||
},
|
||||
"wan_ancient_beasts:crusher")
|
||||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-109)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
faunaData.solidGround(true)
|
||||
},
|
||||
"wan_ancient_beasts:raider")
|
||||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-107)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
faunaData.solidGround(true)
|
||||
},
|
||||
"wan_ancient_beasts:charger")
|
||||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-105)
|
||||
|
|
@ -105,4 +125,14 @@ function registerTFGFauna(event) {
|
|||
faunaData.solidGround(true)
|
||||
},
|
||||
"wan_ancient_beasts:glider")
|
||||
|
||||
event.fauna(
|
||||
climate => {
|
||||
climate.minTemp(-105)
|
||||
climate.fuzzy(true)
|
||||
},
|
||||
faunaData => {
|
||||
faunaData.solidGround(true)
|
||||
},
|
||||
"wan_ancient_beasts:snatcher")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ const registerWABItemTags = (event) => {
|
|||
event.removeAll('wan_ancient_beasts:paleontologist_common')
|
||||
event.removeAll('wan_ancient_beasts:paleontologist_rare')
|
||||
event.removeAll('wan_ancient_beasts:paleontologist_items')
|
||||
event.removeAll('wan_ancient_beasts:eater_food')
|
||||
event.removeAll('wan_ancient_beasts:meat_food')
|
||||
|
||||
event.add('tfc:foods/raw_meats', 'wan_ancient_beasts:toxlacanth')
|
||||
event.add('firmalife:foods/raw_fish', 'wan_ancient_beasts:toxlacanth')
|
||||
|
|
@ -38,8 +38,7 @@ const registerWABItemTags = (event) => {
|
|||
event.add('tfc:foods/cooked_meats', 'wan_ancient_beasts:cooked_ancient_meat')
|
||||
event.add('tfc:foods/meats', 'wan_ancient_beasts:cooked_ancient_meat')
|
||||
|
||||
event.add('wan_ancient_beasts:surfer_food', '#firmalife:foods/raw_fish')
|
||||
event.add('wan_ancient_beasts:eater_food', '#tfg:martian_animal_foods')
|
||||
event.add('wan_antcient_beasts:meat_food', '#tfc:foods/raw_meats')
|
||||
|
||||
// Eggs
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:eater_egg')
|
||||
|
|
@ -48,6 +47,9 @@ const registerWABItemTags = (event) => {
|
|||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:glider_egg')
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:soarer_egg')
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:surfer_egg')
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:snatcher_egg')
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:raider_egg')
|
||||
event.add('tfg:martian_eggs', 'wan_ancient_beasts:charger_egg')
|
||||
}
|
||||
|
||||
const registerWABEntityTypeTags = (event) => {
|
||||
|
|
@ -58,6 +60,11 @@ const registerWABEntityTypeTags = (event) => {
|
|||
event.add('wan_ancient_beasts:eater_ignore', 'species:springling')
|
||||
event.add('wan_ancient_beasts:eater_ignore', 'species:quake')
|
||||
|
||||
event.add('wan_ancient_beasts:raider_ignore', 'tfg:sniffer')
|
||||
event.add('wan_ancient_beasts:raider_ignore', 'tfg:wraptor')
|
||||
event.add('wan_ancient_beasts:raider_ignore', 'species:springling')
|
||||
event.add('wan_ancient_beasts:raider_ignore', 'species:quake')
|
||||
|
||||
}
|
||||
|
||||
const registerWansAncientBeastsBiomeTags = (event) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue