Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scraped data update #191

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/Lib/General/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const EntityData: GeneralEntity =
"cleric",
"cod",
"cow",
"creaking",
"creeper",
"dolphin",
"donkey",
Expand Down Expand Up @@ -161,6 +162,8 @@ export const EntityData: GeneralEntity =
"dried_out",
"enter_water",
"escaped_event",
"fed_open_eyeblossom",
"fed_wither_rose",
"find_flower_timeout",
"find_hive_event",
"find_hive_timeout",
Expand All @@ -180,6 +183,8 @@ export const EntityData: GeneralEntity =
"minecraft:add_attributes",
"minecraft:add_biome_and_skin",
"minecraft:add_can_ride",
"minecraft:add_damage_timer",
"minecraft:add_periodic_damage",
"minecraft:ageable_grow_up",
"minecraft:ageable_set_baby",
"minecraft:ambient_night",
Expand All @@ -189,10 +194,12 @@ export const EntityData: GeneralEntity =
"minecraft:as_baby",
"minecraft:ate_allium",
"minecraft:ate_bluet",
"minecraft:ate_closed_eyeblossom",
"minecraft:ate_cornflower",
"minecraft:ate_daisy",
"minecraft:ate_dandelion",
"minecraft:ate_lily",
"minecraft:ate_open_eyeblossom",
"minecraft:ate_orchid",
"minecraft:ate_poppy",
"minecraft:ate_rose",
Expand Down Expand Up @@ -261,7 +268,10 @@ export const EntityData: GeneralEntity =
"minecraft:command_block_deactivate",
"minecraft:convert_to_drowned",
"minecraft:convert_to_zombie",
"minecraft:crumble",
"minecraft:crystal_explode",
"minecraft:damaged_by_entity",
"minecraft:damaged_by_player",
"minecraft:defend_wandering_trader",
"minecraft:donkey_saddled",
"minecraft:donkey_unsaddled",
Expand All @@ -272,6 +282,7 @@ export const EntityData: GeneralEntity =
"minecraft:entity_born",
"minecraft:entity_born_wild",
"minecraft:entity_spawned",
"minecraft:entity_spawned_by_creaking_heart",
"minecraft:entity_transformed",
"minecraft:exited_bubble_column",
"minecraft:exited_disturbed_hive",
Expand All @@ -298,6 +309,7 @@ export const EntityData: GeneralEntity =
"minecraft:horse_saddled",
"minecraft:horse_unsaddled",
"minecraft:increase_max_health",
"minecraft:increment_swaying_ticks",
"minecraft:join_caravan",
"minecraft:laid_egg",
"minecraft:leave_caravan",
Expand Down Expand Up @@ -332,6 +344,8 @@ export const EntityData: GeneralEntity =
"minecraft:on_scared",
"minecraft:on_sheared",
"minecraft:on_tame",
"minecraft:on_target_start_looking",
"minecraft:on_target_stop_looking",
"minecraft:on_trust",
"minecraft:on_unleash",
"minecraft:panda_aggressive",
Expand All @@ -347,6 +361,7 @@ export const EntityData: GeneralEntity =
"minecraft:ranged_mode",
"minecraft:remove_persistence",
"minecraft:remove_raid_trigger",
"minecraft:reset_swaying_ticks",
"minecraft:resupply_trades",
"minecraft:roll_up",
"minecraft:schedule_bed_villager",
Expand Down Expand Up @@ -413,6 +428,7 @@ export const EntityData: GeneralEntity =
"minecraft:start_roar",
"minecraft:start_sitting",
"minecraft:start_transforming",
"minecraft:start_twitching",
"minecraft:start_unrolling",
"minecraft:stop_aggro",
"minecraft:stop_celebrating",
Expand Down Expand Up @@ -457,10 +473,12 @@ export const EntityData: GeneralEntity =
"on_feeling_happy_end",
"on_item_found",
"on_not_riding_parent",
"on_poison_effect_added",
"on_pregnant",
"on_rising_end",
"on_scenting_success",
"on_search_and_digging_success",
"on_wither_effect_added",
"perish_event",
"pickup_item_delay",
"pickup_item_delay_complete",
Expand Down
35 changes: 33 additions & 2 deletions src/Lib/Vanilla/BehaviorPack/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ export const Entities: Entity[] =
"seek_shelter",
"abort_sheltering",
"countdown_to_perish_event",
"perish_event"
"perish_event",
"fed_open_eyeblossom",
"on_poison_effect_added",
"fed_wither_rose",
"on_wither_effect_added"
],
"families": [
"bee",
Expand Down Expand Up @@ -307,6 +311,28 @@ export const Entities: Entity[] =
"mob"
]
},
{
"id": "minecraft:creaking",
"events": [
"minecraft:entity_spawned",
"minecraft:entity_spawned_by_creaking_heart",
"minecraft:become_hostile",
"minecraft:become_neutral",
"minecraft:on_target_start_looking",
"minecraft:on_target_stop_looking",
"minecraft:start_twitching",
"minecraft:crumble",
"minecraft:damaged_by_player",
"minecraft:damaged_by_entity",
"minecraft:increment_swaying_ticks",
"minecraft:reset_swaying_ticks"
],
"families": [
"creaking",
"monster",
"mob"
]
},
{
"id": "minecraft:creeper",
"events": [
Expand Down Expand Up @@ -744,6 +770,8 @@ export const Entities: Entity[] =
"minecraft:ate_lily",
"minecraft:ate_rose",
"minecraft:ate_torchflower",
"minecraft:ate_open_eyeblossom",
"minecraft:ate_closed_eyeblossom",
"minecraft:ate_orchid",
"minecraft:ate_daisy",
"minecraft:ate_tulip",
Expand Down Expand Up @@ -1366,7 +1394,10 @@ export const Entities: Entity[] =
},
{
"id": "minecraft:vex",
"events": [],
"events": [
"minecraft:add_damage_timer",
"minecraft:add_periodic_damage"
],
"families": [
"vex",
"monster",
Expand Down
59 changes: 50 additions & 9 deletions src/Lib/Vanilla/ResourcePack/animation_controllers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ export const AnimationControllers: AnimationController[] =
"particles": [],
"sounds": []
},
{
"id": "controller.animation.armor_stand.holding_heavy_core",
"animations": [
"holding_heavy_core"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.armor_stand.pose",
"animations": [
Expand Down Expand Up @@ -198,14 +206,6 @@ export const AnimationControllers: AnimationController[] =
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.idle_ground_sound",
"animations": [
"idle_ground_sound"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.breeze.jump",
"animations": [
Expand Down Expand Up @@ -294,6 +294,46 @@ export const AnimationControllers: AnimationController[] =
"particles": [],
"sounds": []
},
{
"id": "controller.animation.creaking.attack",
"animations": [
"attack"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.creaking.look_at_target",
"animations": [
"look_at_target"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.creaking.sway",
"animations": [
"sway"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.creaking.twitch",
"animations": [
"twitch"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.creaking.walk",
"animations": [
"walk"
],
"particles": [],
"sounds": []
},
{
"id": "controller.animation.creeper.head",
"animations": [
Expand Down Expand Up @@ -977,7 +1017,8 @@ export const AnimationControllers: AnimationController[] =
"third_person_bow_equipped",
"tooting_goat_horn",
"holding_brush",
"brushing"
"brushing",
"holding_heavy_core"
],
"particles": [],
"sounds": []
Expand Down
83 changes: 75 additions & 8 deletions src/Lib/Vanilla/ResourcePack/animations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,14 @@ export const Animations: Animation[] =
"particles": [],
"sounds": []
},
{
"id": "animation.armor_stand.holding_heavy_core",
"bones": [
"rightitem"
],
"particles": [],
"sounds": []
},
{
"id": "animation.armor_stand.honor_pose",
"bones": [
Expand Down Expand Up @@ -687,14 +695,6 @@ export const Animations: Animation[] =
],
"sounds": []
},
{
"id": "animation.breeze.idle_ground_sound",
"bones": [],
"particles": [],
"sounds": [
"idle_ground_sound"
]
},
{
"id": "animation.breeze.jump",
"bones": [
Expand Down Expand Up @@ -1016,6 +1016,65 @@ export const Animations: Animation[] =
"particles": [],
"sounds": []
},
{
"id": "animation.creaking.attack",
"bones": [
"upperBody",
"head",
"rightArm",
"leftLeg",
"rightLeg",
"leftArm"
],
"particles": [],
"sounds": []
},
{
"id": "animation.creaking.look_at_target",
"bones": [
"head"
],
"particles": [],
"sounds": []
},
{
"id": "animation.creaking.sway",
"bones": [
"upperBody",
"rightArm",
"leftArm"
],
"particles": [],
"sounds": [
"sway"
]
},
{
"id": "animation.creaking.twitch",
"bones": [
"upperBody",
"rightArm",
"leftArm",
"head"
],
"particles": [],
"sounds": [
"twitch"
]
},
{
"id": "animation.creaking.walk",
"bones": [
"upperBody",
"head",
"rightArm",
"leftArm",
"leftLeg",
"rightLeg"
],
"particles": [],
"sounds": []
},
{
"id": "animation.creeper.legs",
"bones": [
Expand Down Expand Up @@ -3357,6 +3416,14 @@ export const Animations: Animation[] =
"particles": [],
"sounds": []
},
{
"id": "animation.player.holding_heavy_core",
"bones": [
"rightItem"
],
"particles": [],
"sounds": []
},
{
"id": "animation.player.holding.zombie",
"bones": [
Expand Down
18 changes: 17 additions & 1 deletion src/Lib/Vanilla/ResourcePack/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,21 @@ export const Entities: Entity[] =
"baby_transform"
]
},
{
"id": "minecraft:creaking",
"animations": [
"look_at_target",
"look_at_target_controller",
"walk",
"walk_controller",
"attack",
"attack_controller",
"sway",
"sway_controller",
"twitch",
"twitch_controller"
]
},
{
"id": "minecraft:creeper",
"animations": [
Expand Down Expand Up @@ -752,7 +767,8 @@ export const Entities: Entity[] =
"holding_brush",
"brushing",
"crawling",
"crawling.legs"
"crawling.legs",
"holding_heavy_core"
]
},
{
Expand Down
Loading
Loading