Skip to content

Commit

Permalink
[create-pull-request] automated change (#132)
Browse files Browse the repository at this point in the history
Co-authored-by: DaanV2 <[email protected]>
  • Loading branch information
github-actions[bot] and DaanV2 authored Jun 28, 2024
1 parent cc15cbd commit ebb32e9
Show file tree
Hide file tree
Showing 14 changed files with 973 additions and 11 deletions.
11 changes: 9 additions & 2 deletions src/Lib/General/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export const EntityData: GeneralEntity =
"blacksmith",
"blaze",
"boat",
"bogged",
"breeze",
"butcher",
"camel",
"cartographer",
Expand Down Expand Up @@ -122,6 +124,8 @@ export const EntityData: GeneralEntity =
"wandering_trader_despawning",
"warden",
"weaponsmith",
"wind_charge",
"wind_charge_projectile",
"witch",
"wither",
"wolf",
Expand All @@ -140,6 +144,7 @@ export const EntityData: GeneralEntity =
"ageable_grow_up",
"attack_cooldown_complete_event",
"attacked",
"be_sheared",
"become_angry",
"become_angry_event",
"become_calm_event",
Expand Down Expand Up @@ -251,7 +256,7 @@ export const EntityData: GeneralEntity =
"minecraft:camel_saddled",
"minecraft:camel_unsaddled",
"minecraft:cat_gifted_owner",
"minecraft:clear_add_bad_omen",
"minecraft:clear_add_raid_omen",
"minecraft:command_block_activate",
"minecraft:command_block_deactivate",
"minecraft:convert_to_drowned",
Expand Down Expand Up @@ -284,7 +289,7 @@ export const EntityData: GeneralEntity =
"minecraft:from_player",
"minecraft:from_village",
"minecraft:from_wandering_trader",
"minecraft:gain_bad_omen",
"minecraft:gain_raid_omen",
"minecraft:go_lay_egg",
"minecraft:has_target",
"minecraft:hive_full",
Expand Down Expand Up @@ -404,6 +409,7 @@ export const EntityData: GeneralEntity =
"minecraft:start_johnny",
"minecraft:start_land",
"minecraft:start_peeking",
"minecraft:start_playing_idle_ground_sound",
"minecraft:start_roar",
"minecraft:start_sitting",
"minecraft:start_transforming",
Expand All @@ -413,6 +419,7 @@ export const EntityData: GeneralEntity =
"minecraft:stop_exploding",
"minecraft:stop_johnny",
"minecraft:stop_peeking",
"minecraft:stop_playing_idle_ground_sound",
"minecraft:stop_sitting",
"minecraft:stop_transforming",
"minecraft:switch_to_melee",
Expand Down
57 changes: 54 additions & 3 deletions src/Lib/Vanilla/BehaviorPack/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,42 @@ export const Entities: Entity[] =
"inanimate"
]
},
{
"id": "minecraft:bogged",
"events": [
"minecraft:entity_spawned",
"minecraft:melee_mode",
"minecraft:ranged_mode",
"be_sheared"
],
"families": [
"bogged",
"skeleton",
"monster",
"mob",
"undead"
]
},
{
"id": "minecraft:breeze",
"events": [
"minecraft:start_playing_idle_ground_sound",
"minecraft:stop_playing_idle_ground_sound"
],
"families": [
"breeze",
"monster",
"mob"
]
},
{
"id": "minecraft:breeze_wind_charge_projectile",
"events": [],
"families": [
"wind_charge",
"wind_charge_projectile"
]
},
{
"id": "minecraft:camel",
"events": [
Expand Down Expand Up @@ -577,6 +613,7 @@ export const Entities: Entity[] =
"minecraft:entity_spawned",
"minecraft:entity_born",
"minecraft:spawn_adult",
"minecraft:spawn_tame_adult",
"minecraft:on_tame",
"minecraft:ageable_grow_up",
"minecraft:horse_saddled",
Expand Down Expand Up @@ -653,7 +690,8 @@ export const Entities: Entity[] =
"minecraft:on_chest",
"minecraft:add_attributes",
"minecraft:spawn_baby",
"minecraft:spawn_adult"
"minecraft:spawn_adult",
"minecraft:spawn_tame_adult"
],
"families": [
"llama",
Expand Down Expand Up @@ -750,6 +788,11 @@ export const Entities: Entity[] =
"mob"
]
},
{
"id": "minecraft:ominous_item_spawner",
"events": [],
"families": []
},
{
"id": "minecraft:painting",
"events": [],
Expand Down Expand Up @@ -890,8 +933,8 @@ export const Entities: Entity[] =
{
"id": "minecraft:player",
"events": [
"minecraft:gain_bad_omen",
"minecraft:clear_add_bad_omen",
"minecraft:gain_raid_omen",
"minecraft:clear_add_raid_omen",
"minecraft:trigger_raid",
"minecraft:remove_raid_trigger"
],
Expand Down Expand Up @@ -1483,6 +1526,14 @@ export const Entities: Entity[] =
"mob"
]
},
{
"id": "minecraft:wind_charge_projectile",
"events": [],
"families": [
"wind_charge",
"wind_charge_projectile"
]
},
{
"id": "minecraft:witch",
"events": [
Expand Down
16 changes: 16 additions & 0 deletions src/Lib/Vanilla/BehaviorPack/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,10 @@ export const Items: Item[] =
"id": "minecraft:bread",
"max_damage": 0
},
{
"id": "minecraft:breeze_rod",
"max_damage": 0
},
{
"id": "minecraft:brewing_stand",
"max_damage": 0
Expand Down Expand Up @@ -2625,6 +2629,10 @@ export const Items: Item[] =
"id": "minecraft:ochre_froglight",
"max_damage": 0
},
{
"id": "minecraft:ominous_trial_key",
"max_damage": 0
},
{
"id": "minecraft:orange_candle",
"max_damage": 0
Expand Down Expand Up @@ -3657,6 +3665,10 @@ export const Items: Item[] =
"id": "minecraft:trapped_chest",
"max_damage": 0
},
{
"id": "minecraft:trial_key",
"max_damage": 0
},
{
"id": "minecraft:trident",
"max_damage": 0
Expand Down Expand Up @@ -3985,6 +3997,10 @@ export const Items: Item[] =
"id": "minecraft:white_glazed_terracotta",
"max_damage": 0
},
{
"id": "minecraft:wind_charge",
"max_damage": 0
},
{
"id": "minecraft:witch_spawn_egg",
"max_damage": 0
Expand Down
34 changes: 33 additions & 1 deletion src/Lib/Vanilla/BehaviorPack/loot_tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ export const LootTables: string[] =
"loot_tables/chests/stronghold_corridor.json",
"loot_tables/chests/stronghold_crossing.json",
"loot_tables/chests/stronghold_library.json",
"loot_tables/chests/trial_chambers/corridor.json",
"loot_tables/chests/trial_chambers/entrance.json",
"loot_tables/chests/trial_chambers/intersection_barrel.json",
"loot_tables/chests/trial_chambers/intersection.json",
"loot_tables/chests/trial_chambers/reward_common.json",
"loot_tables/chests/trial_chambers/reward_ominous_common.json",
"loot_tables/chests/trial_chambers/reward_ominous_rare.json",
"loot_tables/chests/trial_chambers/reward_ominous_unique.json",
"loot_tables/chests/trial_chambers/reward_ominous.json",
"loot_tables/chests/trial_chambers/reward_rare.json",
"loot_tables/chests/trial_chambers/reward_unique.json",
"loot_tables/chests/trial_chambers/reward.json",
"loot_tables/chests/trial_chambers/supply.json",
"loot_tables/chests/underwater_ruin_big.json",
"loot_tables/chests/underwater_ruin_small.json",
"loot_tables/chests/village_blacksmith.json",
Expand All @@ -47,6 +60,9 @@ export const LootTables: string[] =
"loot_tables/chests/village/village_toolsmith.json",
"loot_tables/chests/village/village_weaponsmith.json",
"loot_tables/chests/woodland_mansion.json",
"loot_tables/dispensers/trial_chambers/chamber.json",
"loot_tables/dispensers/trial_chambers/corridor.json",
"loot_tables/dispensers/trial_chambers/water.json",
"loot_tables/empty.json",
"loot_tables/entities/armadillo_brush.json",
"loot_tables/entities/armor_set_chain.json",
Expand All @@ -58,6 +74,9 @@ export const LootTables: string[] =
"loot_tables/entities/bat.json",
"loot_tables/entities/blaze.json",
"loot_tables/entities/boat.json",
"loot_tables/entities/bogged_shear.json",
"loot_tables/entities/bogged.json",
"loot_tables/entities/breeze.json",
"loot_tables/entities/brown_mooshroom_shear.json",
"loot_tables/entities/cat_gift.json",
"loot_tables/entities/cat.json",
Expand Down Expand Up @@ -105,6 +124,7 @@ export const LootTables: string[] =
"loot_tables/entities/piglin_gear_melee.json",
"loot_tables/entities/piglin_gear_ranged.json",
"loot_tables/entities/pillager_captain_equipment.json",
"loot_tables/entities/pillager_captain.json",
"loot_tables/entities/pillager_gear.json",
"loot_tables/entities/pillager_raid.json",
"loot_tables/entities/pillager.json",
Expand Down Expand Up @@ -155,6 +175,12 @@ export const LootTables: string[] =
"loot_tables/entities/zombie.json",
"loot_tables/entities/zombified_piglin_rider_gear.json",
"loot_tables/equipment/low_tier_items.json",
"loot_tables/equipment/trial_chamber_chainmail.json",
"loot_tables/equipment/trial_chamber_diamond.json",
"loot_tables/equipment/trial_chamber_iron.json",
"loot_tables/equipment/trial_chamber_melee.json",
"loot_tables/equipment/trial_chamber_ranged.json",
"loot_tables/equipment/trial_chamber.json",
"loot_tables/gameplay/entities/mooshroom_milking.json",
"loot_tables/gameplay/entities/sniffer_seeds.json",
"loot_tables/gameplay/fishing.json",
Expand All @@ -163,5 +189,11 @@ export const LootTables: string[] =
"loot_tables/gameplay/fishing/jungle_junk.json",
"loot_tables/gameplay/fishing/junk.json",
"loot_tables/gameplay/fishing/treasure.json",
"loot_tables/gameplay/jungle_fishing.json"
"loot_tables/gameplay/jungle_fishing.json",
"loot_tables/pots/trial_chambers/corridor.json",
"loot_tables/spawners/ominous/trial_chamber/consumables.json",
"loot_tables/spawners/ominous/trial_chamber/key.json",
"loot_tables/spawners/trial_chamber/consumables.json",
"loot_tables/spawners/trial_chamber/items_to_drop_when_ominous.json",
"loot_tables/spawners/trial_chamber/key.json"
]
Expand Down
64 changes: 64 additions & 0 deletions src/Lib/Vanilla/ResourcePack/animation_controllers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,70 @@ export const AnimationControllers: AnimationController[] =
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.ground_particles",
"animations": [
"idle_ground_particles",
"slide_ground_particles"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.idle",
"animations": [
"idle"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.idle_ground_sound",
"animations": [
"idle_ground_sound"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.jump",
"animations": [
"jump"
],
"particles": [],
"sounds": [
"effect"
]
},
{
"id": "controller.animation.breeze.look_at",
"animations": [
"look_at"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.move",
"animations": [
"whirl_sound",
"slide"
],
"particles": [],
"sounds": [
"effect"
]
},
{
"id": "controller.animation.breeze.shoot",
"animations": [
"shoot"
],
"particles": [],
"sounds": [
"effect"
]
},
{
"id": "controller.animation.camel.general",
"animations": [
Expand Down
Loading

0 comments on commit ebb32e9

Please sign in to comment.