egg 🥚🍳🦖🦕
This commit is contained in:
parent
c1d17780d8
commit
92a47d7d1a
7 changed files with 54 additions and 11 deletions
20
kubejs/data/minecraft/loot_tables/blocks/sniffer_egg.json
Normal file
20
kubejs/data/minecraft/loot_tables/blocks/sniffer_egg.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:block",
|
||||||
|
"pools": [
|
||||||
|
{
|
||||||
|
"name": "loot_pool",
|
||||||
|
"rolls": 1,
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:item",
|
||||||
|
"name": "tfg:sniffer_egg"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:survives_explosion"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
20
kubejs/data/species/loot_tables/blocks/wraptor_egg.json
Normal file
20
kubejs/data/species/loot_tables/blocks/wraptor_egg.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:block",
|
||||||
|
"pools": [
|
||||||
|
{
|
||||||
|
"name": "loot_pool",
|
||||||
|
"rolls": 1,
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:item",
|
||||||
|
"name": "tfg:wraptor_egg"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:survives_explosion"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -21,6 +21,9 @@ const registerSpeciesItemTags = (event) => {
|
||||||
|
|
||||||
event.add('forge:eggs', 'species:birt_egg')
|
event.add('forge:eggs', 'species:birt_egg')
|
||||||
event.add('firmalife:foods/raw_eggs', 'species:birt_egg')
|
event.add('firmalife:foods/raw_eggs', 'species:birt_egg')
|
||||||
|
event.add('tfg:martian_eggs', 'species:cruncher_egg')
|
||||||
|
event.add('tfg:martian_eggs', 'species:springling_egg')
|
||||||
|
event.add('tfg:martian_eggs', 'species:petrified_egg')
|
||||||
|
|
||||||
event.add('species:goober_breed_items', '#forge:mushrooms')
|
event.add('species:goober_breed_items', '#forge:mushrooms')
|
||||||
event.add('species:cruncher_eats', '#tfc:foods/meat')
|
event.add('species:cruncher_eats', '#tfc:foods/meat')
|
||||||
|
|
@ -31,5 +34,5 @@ const registerSpeciesItemTags = (event) => {
|
||||||
|
|
||||||
event.add('minecraft:wart_blocks', 'species:alphacene_mushroom_block')
|
event.add('minecraft:wart_blocks', 'species:alphacene_mushroom_block')
|
||||||
|
|
||||||
event.add('stackatick_tempt_items', 'tfc:sweetener')
|
event.add('species:stackatick_tempt_items', 'tfc:sweetener')
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -794,6 +794,7 @@ const registerTFGItemTags = (event) => {
|
||||||
event.add('tfg:martian_eggs', 'tfg:sniffer_egg')
|
event.add('tfg:martian_eggs', 'tfg:sniffer_egg')
|
||||||
event.add('tfg:martian_eggs', 'tfg:wraptor_egg')
|
event.add('tfg:martian_eggs', 'tfg:wraptor_egg')
|
||||||
event.add('forge:eggs', '#tfg:martian_eggs')
|
event.add('forge:eggs', '#tfg:martian_eggs')
|
||||||
|
event.add('firmalife:foods/raw_eggs', '#tfg:martian_eggs')
|
||||||
|
|
||||||
event.add('tfg:martian_animal_foods', 'betterend:amber_root_product')
|
event.add('tfg:martian_animal_foods', 'betterend:amber_root_product')
|
||||||
event.add('tfg:martian_animal_foods', 'betterend:blossom_berry_product')
|
event.add('tfg:martian_animal_foods', 'betterend:blossom_berry_product')
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,14 @@ const registerWABItemTags = (event) => {
|
||||||
|
|
||||||
event.add('wan_ancient_beasts:surfer_food', '#firmalife:foods/raw_fish')
|
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_ancient_beasts:eater_food', '#tfg:martian_animal_foods')
|
||||||
|
|
||||||
|
// Eggs
|
||||||
|
event.add('tfg:martian_eggs', 'wan_ancient_beasts:eater_egg')
|
||||||
|
event.add('tfg:martian_eggs', 'wan_ancient_beasts:walker_egg')
|
||||||
|
event.add('tfg:martian_eggs', 'wan_ancient_beasts:crusher_egg')
|
||||||
|
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')
|
||||||
}
|
}
|
||||||
|
|
||||||
const registerWABEntityTypeTags = (event) => {
|
const registerWABEntityTypeTags = (event) => {
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,6 @@ global.SPECIES_DISABLED_BLOCKS = [
|
||||||
global.SPECIES_DISABLED_ITEMS = [
|
global.SPECIES_DISABLED_ITEMS = [
|
||||||
'species:deepfish_bucket',
|
'species:deepfish_bucket',
|
||||||
'species:ancient_pinecone',
|
'species:ancient_pinecone',
|
||||||
'species:cruncher_egg',
|
|
||||||
'species:ichor_bottle',
|
'species:ichor_bottle',
|
||||||
'species:youth_potion',
|
'species:youth_potion',
|
||||||
'species:wraptor_egg',
|
'species:wraptor_egg',
|
||||||
|
|
@ -33,7 +32,5 @@ global.SPECIES_DISABLED_ITEMS = [
|
||||||
'species:ghoul_tongue',
|
'species:ghoul_tongue',
|
||||||
'species:broken_links',
|
'species:broken_links',
|
||||||
'species:werefang',
|
'species:werefang',
|
||||||
'species:wicked_wax',
|
'species:wicked_wax'
|
||||||
'species:springling_egg',
|
|
||||||
'species:petrified_egg'
|
|
||||||
];
|
];
|
||||||
|
|
@ -29,12 +29,6 @@ global.WAB_DISABLED_ITEMS = [
|
||||||
//'wan_ancient_beasts:glider_feather',
|
//'wan_ancient_beasts:glider_feather',
|
||||||
'wan_ancient_beasts:hang_glider',
|
'wan_ancient_beasts:hang_glider',
|
||||||
//'wan_ancient_beasts:surfer_armor',
|
//'wan_ancient_beasts:surfer_armor',
|
||||||
'wan_ancient_beasts:eater_egg',
|
|
||||||
'wan_ancient_beasts:walker_egg',
|
|
||||||
'wan_ancient_beasts:crusher_egg',
|
|
||||||
'wan_ancient_beasts:glider_egg',
|
|
||||||
'wan_ancient_beasts:soarer_egg',
|
|
||||||
'wan_ancient_beasts:surfer_egg',
|
|
||||||
'wan_ancient_beasts:frozen_ancient_meat',
|
'wan_ancient_beasts:frozen_ancient_meat',
|
||||||
//'wan_ancient_beasts:raw_ancient_meat',
|
//'wan_ancient_beasts:raw_ancient_meat',
|
||||||
//'wan_ancient_beasts:cooked_ancient_meat',
|
//'wan_ancient_beasts:cooked_ancient_meat',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue