sapdon 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +2 -0
- package/LICENSE +21 -0
- package/README.md +26 -0
- package/doc/api.md +128 -0
- package/examples/digitCircuit/build.config +28 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_and_gate.json +152 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_not_gate.json +152 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_or_gate.json +152 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/blocks/sapdon_wire.json +103 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/manifest.json +60 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/pack_icon.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_BP/scripts/index.js +95 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/blocks.json +43 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/manifest.json +44 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/arcane_workbench.geo.json +106 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/crop.geo.json +147 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal.geo.json +47 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_0.geo.json +59 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_1.geo.json +59 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_2.geo.json +59 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/jar_normal_3.geo.json +59 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/models/blocks/wire.geo.json +154 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/pack_icon.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/and_gate.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/not_gate.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/or_gate.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/blocks/wire.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/item_texture.json +9 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/items/masterball.png +0 -0
- package/examples/digitCircuit/dev/digitCircuit_RP/textures/terrain_texture.json +26 -0
- package/examples/digitCircuit/lib/wire.js +20 -0
- package/examples/digitCircuit/main.mjs +14 -0
- package/examples/digitCircuit/mod.info +7 -0
- package/examples/digitCircuit/pack_icon.png +0 -0
- package/examples/digitCircuit/res/models/blocks/arcane_workbench.geo.json +106 -0
- package/examples/digitCircuit/res/models/blocks/crop.geo.json +147 -0
- package/examples/digitCircuit/res/models/blocks/jar_normal.geo.json +47 -0
- package/examples/digitCircuit/res/models/blocks/jar_normal_0.geo.json +59 -0
- package/examples/digitCircuit/res/models/blocks/jar_normal_1.geo.json +59 -0
- package/examples/digitCircuit/res/models/blocks/jar_normal_2.geo.json +59 -0
- package/examples/digitCircuit/res/models/blocks/jar_normal_3.geo.json +59 -0
- package/examples/digitCircuit/res/models/blocks/wire.geo.json +154 -0
- package/examples/digitCircuit/res/textures/blocks/and_gate.png +0 -0
- package/examples/digitCircuit/res/textures/blocks/not_gate.png +0 -0
- package/examples/digitCircuit/res/textures/blocks/or_gate.png +0 -0
- package/examples/digitCircuit/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/digitCircuit/res/textures/blocks/test_log_top.png +0 -0
- package/examples/digitCircuit/res/textures/blocks/wire.png +0 -0
- package/examples/digitCircuit/res/textures/items/masterball.png +0 -0
- package/examples/digitCircuit/scripts/index.js +95 -0
- package/examples/masterball/build.config +28 -0
- package/examples/masterball/dev/masterball[1.20.20+].mcaddon.zip +0 -0
- package/examples/masterball/dev/masterball_BP/entities/sapdon_projectile_masterball.json +56 -0
- package/examples/masterball/dev/masterball_BP/items/sapdon_caught_masterball.json +32 -0
- package/examples/masterball/dev/masterball_BP/items/sapdon_uncaught_masterball.json +31 -0
- package/examples/masterball/dev/masterball_BP/manifest.json +60 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/entities/sapdon_projectile_masterball.json +56 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_caught_masterball.json +32 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_uncaught_masterball.json +31 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/manifest.json +60 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/scripts/index.js +159 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20.zip +0 -0
- package/examples/masterball/dev/masterball_BP/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_BP/scripts/index.js +159 -0
- package/examples/masterball/dev/masterball_RP/blocks.json +3 -0
- package/examples/masterball/dev/masterball_RP/entity/sapdon_projectile_masterball.json +28 -0
- package/examples/masterball/dev/masterball_RP/manifest.json +44 -0
- package/examples/masterball/dev/masterball_RP/masterball_RP_1_20_20.zip +0 -0
- package/examples/masterball/dev/masterball_RP/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/masterball/dev/masterball_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/masterball/dev/masterball_RP/textures/item_texture.json +9 -0
- package/examples/masterball/dev/masterball_RP/textures/items/masterball.png +0 -0
- package/examples/masterball/dev/masterball_RP/textures/terrain_texture.json +14 -0
- package/examples/masterball/main.mjs +24 -0
- package/examples/masterball/mod.info +7 -0
- package/examples/masterball/pack_icon.png +0 -0
- package/examples/masterball/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/masterball/res/textures/blocks/test_log_top.png +0 -0
- package/examples/masterball/res/textures/items/masterball.png +0 -0
- package/examples/masterball/scripts/index.js +159 -0
- package/examples/test/dev/test_BP/biomes/test_biome.json +48 -0
- package/examples/test/dev/test_BP/blocks/sapdon_block.json +111 -0
- package/examples/test/dev/test_BP/blocks/sapdon_ore_cinnabar.json +16 -0
- package/examples/test/dev/test_BP/blocks/sapdon_test_block.json +16 -0
- package/examples/test/dev/test_BP/blocks/sapdon_test_crop.json +192 -0
- package/examples/test/dev/test_BP/blocks/sapdon_wire.json +103 -0
- package/examples/test/dev/test_BP/entities/sapdon_body.json +118 -0
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl1.json +55 -0
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl2.json +61 -0
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_header.json +408 -0
- package/examples/test/dev/test_BP/entities/sapdon_test_projectile.json +56 -0
- package/examples/test/dev/test_BP/feature_rules/ore_cinnabar_orefeatre_rule.json +53 -0
- package/examples/test/dev/test_BP/feature_rules/overworld_underground_titanite_ore_feature.json +53 -0
- package/examples/test/dev/test_BP/features/ore_cinnabar_ore_feature.json +17 -0
- package/examples/test/dev/test_BP/features/titanite_ore_feature.json +23 -0
- package/examples/test/dev/test_BP/items/sapdon_chest.json +23 -0
- package/examples/test/dev/test_BP/items/sapdon_test_food.json +26 -0
- package/examples/test/dev/test_BP/items/sapdon_test_item.json +31 -0
- package/examples/test/dev/test_BP/manifest.json +60 -0
- package/examples/test/dev/test_BP/pack_icon.png +0 -0
- package/examples/test/dev/test_BP/recipes/sapdon_test_furnace.json +13 -0
- package/examples/test/dev/test_BP/scripts/custom_components/cropComponent.js +59 -0
- package/examples/test/dev/test_BP/scripts/index.js +101 -0
- package/examples/test/dev/test_RP/attachables/sapdon_chest.json +25 -0
- package/examples/test/dev/test_RP/blocks.json +43 -0
- package/examples/test/dev/test_RP/entity/sapdon_body.json +44 -0
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl1.json +38 -0
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl2.json +38 -0
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_header.json +44 -0
- package/examples/test/dev/test_RP/entity/sapdon_test_projectile.json +28 -0
- package/examples/test/dev/test_RP/manifest.json +44 -0
- package/examples/test/dev/test_RP/models/blocks/arcane_workbench.geo.json +106 -0
- package/examples/test/dev/test_RP/models/blocks/crop.geo.json +147 -0
- package/examples/test/dev/test_RP/models/blocks/jar_normal.geo.json +47 -0
- package/examples/test/dev/test_RP/models/blocks/jar_normal_0.geo.json +59 -0
- package/examples/test/dev/test_RP/models/blocks/jar_normal_1.geo.json +59 -0
- package/examples/test/dev/test_RP/models/blocks/jar_normal_2.geo.json +59 -0
- package/examples/test/dev/test_RP/models/blocks/jar_normal_3.geo.json +59 -0
- package/examples/test/dev/test_RP/models/blocks/wire.geo.json +154 -0
- package/examples/test/dev/test_RP/pack_icon.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/animatedglow.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/arcane_workbench_side.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/arcane_workbench_top.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/base_wood_grain.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/castleBlock_darkBrickBloody_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/castleBlock_darkSlab_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/castleBlock_purpleBrick_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/castleBlock_purpleSlab_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/churchAltar.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/compass_block_down.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/compass_block_east.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/compass_block_north.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/compass_block_south.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/compass_block_up.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/compass_block_west.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/cursedEarth_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/custom_chestplate.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/garlicTorchStrong_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/garlicTorchWeak_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/garlic_stage_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/garlic_stage_1.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/garlic_stage_2.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/garlic_stage_3.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/jar_bottom.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/jar_brine.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/jar_side.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/jar_side_void.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/jar_top.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/jar_top_void.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/ore_cinnabar.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/test_block.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/vampireOrchid_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_0.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_1.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_2.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_3.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_4.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_5.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_6.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wheat_stage_7.png +0 -0
- package/examples/test/dev/test_RP/textures/blocks/wire.png +0 -0
- package/examples/test/dev/test_RP/textures/entity/vampire.png +0 -0
- package/examples/test/dev/test_RP/textures/entity/vampire1.png +0 -0
- package/examples/test/dev/test_RP/textures/entity//345/220/270/350/241/200/347/211/233.png +0 -0
- package/examples/test/dev/test_RP/textures/entity//345/220/270/350/241/200/347/213/227.png +0 -0
- package/examples/test/dev/test_RP/textures/entity//345/220/270/350/241/200/347/214/252.png +0 -0
- package/examples/test/dev/test_RP/textures/flipbook_textures.json +1 -0
- package/examples/test/dev/test_RP/textures/item_texture.json +789 -0
- package/examples/test/dev/test_RP/textures/items/alumentum.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amber.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amulet_fancy.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amulet_mundane.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amulet_runic.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amulet_runic_emergency.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amulet_vis.png +0 -0
- package/examples/test/dev/test_RP/textures/items/amulet_vis_stone.png +0 -0
- package/examples/test/dev/test_RP/textures/items/banner.png +0 -0
- package/examples/test/dev/test_RP/textures/items/banner_cultist.png +0 -0
- package/examples/test/dev/test_RP/textures/items/banner_stand.png +0 -0
- package/examples/test/dev/test_RP/textures/items/banner_symbol.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bath_salts.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bone_bow.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bone_bow_0.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bone_bow_1.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bone_bow_2.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bottle_taint.png +0 -0
- package/examples/test/dev/test_RP/textures/items/brain.png +0 -0
- package/examples/test/dev/test_RP/textures/items/brass_gear.png +0 -0
- package/examples/test/dev/test_RP/textures/items/brass_plate.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bucket_death.png +0 -0
- package/examples/test/dev/test_RP/textures/items/bucket_pure.png +0 -0
- package/examples/test/dev/test_RP/textures/items/chunk_beef.png +0 -0
- package/examples/test/dev/test_RP/textures/items/chunk_chicken.png +0 -0
- package/examples/test/dev/test_RP/textures/items/chunk_fish.png +0 -0
- package/examples/test/dev/test_RP/textures/items/chunk_mutton.png +0 -0
- package/examples/test/dev/test_RP/textures/items/chunk_pork.png +0 -0
- package/examples/test/dev/test_RP/textures/items/chunk_rabbit.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cloth_boots.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cloth_boots_over.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cloth_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cloth_chest_over.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cloth_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cloth_legs_over.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_cinnabar.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_copper.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_gold.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_iron.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_lead.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_silver.png +0 -0
- package/examples/test/dev/test_RP/textures/items/cluster_tin.png +0 -0
- package/examples/test/dev/test_RP/textures/items/coin.png +0 -0
- package/examples/test/dev/test_RP/textures/items/creative_caster.png +0 -0
- package/examples/test/dev/test_RP/textures/items/creative_node.png +0 -0
- package/examples/test/dev/test_RP/textures/items/creative_obelisk.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_blade.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_boots.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_plate_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_plate_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_plate_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_praetor_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_praetor_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_praetor_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_rites.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_robe_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_robe_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crimson_robe_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crystal_essence.png +0 -0
- package/examples/test/dev/test_RP/textures/items/crystal_planter.png +0 -0
- package/examples/test/dev/test_RP/textures/items/custom_chestplate.png +0 -0
- package/examples/test/dev/test_RP/textures/items/discovery.png +0 -0
- package/examples/test/dev/test_RP/textures/items/discovery_overlay.png +0 -0
- package/examples/test/dev/test_RP/textures/items/eldritch_eye.png +0 -0
- package/examples/test/dev/test_RP/textures/items/elemental_axe.png +0 -0
- package/examples/test/dev/test_RP/textures/items/elemental_hoe.png +0 -0
- package/examples/test/dev/test_RP/textures/items/elemental_pick.png +0 -0
- package/examples/test/dev/test_RP/textures/items/elemental_shovel.png +0 -0
- package/examples/test/dev/test_RP/textures/items/elemental_sword.png +0 -0
- package/examples/test/dev/test_RP/textures/items/fabric.png +0 -0
- package/examples/test/dev/test_RP/textures/items/filter.png +0 -0
- package/examples/test/dev/test_RP/textures/items/flux_sponge.png +0 -0
- package/examples/test/dev/test_RP/textures/items/focus_pouch.png +0 -0
- package/examples/test/dev/test_RP/textures/items/fortress_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/fortress_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/fortress_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/girdle_fancy.png +0 -0
- package/examples/test/dev/test_RP/textures/items/girdle_hover.png +0 -0
- package/examples/test/dev/test_RP/textures/items/girdle_mundane.png +0 -0
- package/examples/test/dev/test_RP/textures/items/girdle_runic.png +0 -0
- package/examples/test/dev/test_RP/textures/items/girdle_runic_kinetic.png +0 -0
- package/examples/test/dev/test_RP/textures/items/goggles_revealing.png +0 -0
- package/examples/test/dev/test_RP/textures/items/golem.png +0 -0
- package/examples/test/dev/test_RP/textures/items/golem_bell.png +0 -0
- package/examples/test/dev/test_RP/textures/items/hand_mirror.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ingot_brass.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ingot_thaumium.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ingot_void.png +0 -0
- package/examples/test/dev/test_RP/textures/items/iron_plate.png +0 -0
- package/examples/test/dev/test_RP/textures/items/jar_brace.png +0 -0
- package/examples/test/dev/test_RP/textures/items/knowledge_fragment.png +0 -0
- package/examples/test/dev/test_RP/textures/items/label.png +0 -0
- package/examples/test/dev/test_RP/textures/items/label_overlay.png +0 -0
- package/examples/test/dev/test_RP/textures/items/loot_bag_common.png +0 -0
- package/examples/test/dev/test_RP/textures/items/loot_bag_rare.png +0 -0
- package/examples/test/dev/test_RP/textures/items/loot_bag_uncommon.png +0 -0
- package/examples/test/dev/test_RP/textures/items/masterball.png +0 -0
- package/examples/test/dev/test_RP/textures/items/mind_biothaumic.png +0 -0
- package/examples/test/dev/test_RP/textures/items/mind_clockwork.png +0 -0
- package/examples/test/dev/test_RP/textures/items/mirrored_glass.png +0 -0
- package/examples/test/dev/test_RP/textures/items/module_aggression.png +0 -0
- package/examples/test/dev/test_RP/textures/items/module_vision.png +0 -0
- package/examples/test/dev/test_RP/textures/items/morphic_resonator.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_brass.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_copper.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_iron.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_lead.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_quicksilver.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_silver.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_thaumium.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_tin.png +0 -0
- package/examples/test/dev/test_RP/textures/items/nugget_void.png +0 -0
- package/examples/test/dev/test_RP/textures/items/phial.png +0 -0
- package/examples/test/dev/test_RP/textures/items/phial_overlay.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_arrow_air.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_arrow_earth.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_arrow_entropy.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_arrow_fire.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_arrow_order.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_arrow_water.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_charm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primal_crusher.png +0 -0
- package/examples/test/dev/test_RP/textures/items/primordial_pearl.png +0 -0
- package/examples/test/dev/test_RP/textures/items/quicksilver.png +0 -0
- package/examples/test/dev/test_RP/textures/items/researchnotes.png +0 -0
- package/examples/test/dev/test_RP/textures/items/researchnotes_overlay.png +0 -0
- package/examples/test/dev/test_RP/textures/items/resonator.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_apprentice.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_fancy.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_mundane.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_protection.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_runic.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_runic_charge.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_runic_regen.png +0 -0
- package/examples/test/dev/test_RP/textures/items/ring_verdant.png +0 -0
- package/examples/test/dev/test_RP/textures/items/runed_tablet.png +0 -0
- package/examples/test/dev/test_RP/textures/items/salis_mundus.png +0 -0
- package/examples/test/dev/test_RP/textures/items/sanity_checker.png +0 -0
- package/examples/test/dev/test_RP/textures/items/sanity_soap.png +0 -0
- package/examples/test/dev/test_RP/textures/items/scribing_tools.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_blank.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_breaker.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_breaker.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_butcher.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_butcher.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty_advanced.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty_advanced.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill_advanced.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill_advanced.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard_advanced.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard_advanced.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_harvest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_harvest.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_lumber.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_lumber.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup_advanced.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup_advanced.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_provider.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_provider.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_use.png +0 -0
- package/examples/test/dev/test_RP/textures/items/seals/seal_use.png.mcmeta +6 -0
- package/examples/test/dev/test_RP/textures/items/shard.png +0 -0
- package/examples/test/dev/test_RP/textures/items/shard_balanced.png +0 -0
- package/examples/test/dev/test_RP/textures/items/sinister_stone.png +0 -0
- package/examples/test/dev/test_RP/textures/items/sinister_stone_active.png +0 -0
- package/examples/test/dev/test_RP/textures/items/taint_slime.png +0 -0
- package/examples/test/dev/test_RP/textures/items/taint_tendril.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tallow.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_axe.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_boots.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_gear.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_hoe.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_pick.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_plate.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_shovel.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumium_sword.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumometer.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumonomicon.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumonomicon_cheat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/thaumostatic_harness.png +0 -0
- package/examples/test/dev/test_RP/textures/items/traveller_boots.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tripletreat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tube_buffer.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tube_filter.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tube_normal.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tube_oneway.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tube_restrict.png +0 -0
- package/examples/test/dev/test_RP/textures/items/tube_valve.png +0 -0
- package/examples/test/dev/test_RP/textures/items/turret_advanced.png +0 -0
- package/examples/test/dev/test_RP/textures/items/turret_basic.png +0 -0
- package/examples/test/dev/test_RP/textures/items/turret_focus.png +0 -0
- package/examples/test/dev/test_RP/textures/items/turret_magnet.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_axe.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_boots.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_gear.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_hoe.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_pick.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_plate.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_robe_chest.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_robe_chest_over.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_robe_helm.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_robe_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_robe_legs_over.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_seed.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_shovel.png +0 -0
- package/examples/test/dev/test_RP/textures/items/void_sword.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_brass.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_brass_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_gold.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_gold_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_iron.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_iron_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium.png.mcmeta +11 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium_inert.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_void.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_void.png.mcmeta +11 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_void_inert.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/cap_void_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_builder.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_excavation.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_fire.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_frost.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_grapple.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_hellbat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_hellbat_orn.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_pech.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_pech.png.mcmeta +3 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_portablehole.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_portablehole.png.mcmeta +3 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_primal.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_primal.png.mcmeta +3 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_shard.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_shard.png.mcmeta +3 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_shock.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_trade.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_warding.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/focus_warding.png.mcmeta +3 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_blaze.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_blaze_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_blaze_mat.png.mcmeta +45 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_bone.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_bone_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_greatwood.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_greatwood_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_ice.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_ice_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_obsidian.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_obsidian_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_primal_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_primal_mat.png.mcmeta +45 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_quartz.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_quartz_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_reed.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_reed_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_silverwood.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_silverwood_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/rod_wood_mat.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_blaze.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_bone.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_greatwood.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_ice.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_obsidian.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_primal.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_quartz.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_reed.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wand/staff_rod_silverwood.png +0 -0
- package/examples/test/dev/test_RP/textures/items/wispy_essence.png +0 -0
- package/examples/test/dev/test_RP/textures/models/armor/custom_legs.png +0 -0
- package/examples/test/dev/test_RP/textures/models/armor/custom_main.png +0 -0
- package/examples/test/dev/test_RP/textures/models/armor/vampireArmor_1.png +0 -0
- package/examples/test/dev/test_RP/textures/models/armor/vampireArmor_2.png +0 -0
- package/examples/test/dev/test_RP/textures/terrain_texture.json +137 -0
- package/examples/test/lib/wire.js +20 -0
- package/examples/test/main.mjs +112 -0
- package/examples/test/mod.info +7 -0
- package/examples/test/pack_icon.png +0 -0
- package/examples/test/res/models/blocks/arcane_workbench.geo.json +106 -0
- package/examples/test/res/models/blocks/crop.geo.json +147 -0
- package/examples/test/res/models/blocks/jar_normal.geo.json +47 -0
- package/examples/test/res/models/blocks/jar_normal_0.geo.json +59 -0
- package/examples/test/res/models/blocks/jar_normal_1.geo.json +59 -0
- package/examples/test/res/models/blocks/jar_normal_2.geo.json +59 -0
- package/examples/test/res/models/blocks/jar_normal_3.geo.json +59 -0
- package/examples/test/res/models/blocks/wire.geo.json +154 -0
- package/examples/test/res/textures/blocks/animatedglow.png +0 -0
- package/examples/test/res/textures/blocks/arcane_workbench_side.png +0 -0
- package/examples/test/res/textures/blocks/arcane_workbench_top.png +0 -0
- package/examples/test/res/textures/blocks/base_wood_grain.png +0 -0
- package/examples/test/res/textures/blocks/castleBlock_darkBrickBloody_0.png +0 -0
- package/examples/test/res/textures/blocks/castleBlock_darkSlab_0.png +0 -0
- package/examples/test/res/textures/blocks/castleBlock_purpleBrick_0.png +0 -0
- package/examples/test/res/textures/blocks/castleBlock_purpleSlab_0.png +0 -0
- package/examples/test/res/textures/blocks/churchAltar.png +0 -0
- package/examples/test/res/textures/blocks/compass_block_down.png +0 -0
- package/examples/test/res/textures/blocks/compass_block_east.png +0 -0
- package/examples/test/res/textures/blocks/compass_block_north.png +0 -0
- package/examples/test/res/textures/blocks/compass_block_south.png +0 -0
- package/examples/test/res/textures/blocks/compass_block_up.png +0 -0
- package/examples/test/res/textures/blocks/compass_block_west.png +0 -0
- package/examples/test/res/textures/blocks/cursedEarth_0.png +0 -0
- package/examples/test/res/textures/blocks/custom_chestplate.png +0 -0
- package/examples/test/res/textures/blocks/garlicTorchStrong_0.png +0 -0
- package/examples/test/res/textures/blocks/garlicTorchWeak_0.png +0 -0
- package/examples/test/res/textures/blocks/garlic_stage_0.png +0 -0
- package/examples/test/res/textures/blocks/garlic_stage_1.png +0 -0
- package/examples/test/res/textures/blocks/garlic_stage_2.png +0 -0
- package/examples/test/res/textures/blocks/garlic_stage_3.png +0 -0
- package/examples/test/res/textures/blocks/jar_bottom.png +0 -0
- package/examples/test/res/textures/blocks/jar_brine.png +0 -0
- package/examples/test/res/textures/blocks/jar_side.png +0 -0
- package/examples/test/res/textures/blocks/jar_side_void.png +0 -0
- package/examples/test/res/textures/blocks/jar_top.png +0 -0
- package/examples/test/res/textures/blocks/jar_top_void.png +0 -0
- package/examples/test/res/textures/blocks/ore_cinnabar.png +0 -0
- package/examples/test/res/textures/blocks/test_block.png +0 -0
- package/examples/test/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/test/res/textures/blocks/test_log_top.png +0 -0
- package/examples/test/res/textures/blocks/vampireOrchid_0.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_0.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_1.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_2.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_3.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_4.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_5.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_6.png +0 -0
- package/examples/test/res/textures/blocks/wheat_stage_7.png +0 -0
- package/examples/test/res/textures/blocks/wire.png +0 -0
- package/examples/test/res/textures/entity/vampire.png +0 -0
- package/examples/test/res/textures/entity/vampire1.png +0 -0
- package/examples/test/res/textures/entity//345/220/270/350/241/200/347/211/233.png +0 -0
- package/examples/test/res/textures/entity//345/220/270/350/241/200/347/213/227.png +0 -0
- package/examples/test/res/textures/entity//345/220/270/350/241/200/347/214/252.png +0 -0
- package/examples/test/res/textures/items/alumentum.png +0 -0
- package/examples/test/res/textures/items/amber.png +0 -0
- package/examples/test/res/textures/items/amulet_fancy.png +0 -0
- package/examples/test/res/textures/items/amulet_mundane.png +0 -0
- package/examples/test/res/textures/items/amulet_runic.png +0 -0
- package/examples/test/res/textures/items/amulet_runic_emergency.png +0 -0
- package/examples/test/res/textures/items/amulet_vis.png +0 -0
- package/examples/test/res/textures/items/amulet_vis_stone.png +0 -0
- package/examples/test/res/textures/items/banner.png +0 -0
- package/examples/test/res/textures/items/banner_cultist.png +0 -0
- package/examples/test/res/textures/items/banner_stand.png +0 -0
- package/examples/test/res/textures/items/banner_symbol.png +0 -0
- package/examples/test/res/textures/items/bath_salts.png +0 -0
- package/examples/test/res/textures/items/bone_bow.png +0 -0
- package/examples/test/res/textures/items/bone_bow_0.png +0 -0
- package/examples/test/res/textures/items/bone_bow_1.png +0 -0
- package/examples/test/res/textures/items/bone_bow_2.png +0 -0
- package/examples/test/res/textures/items/bottle_taint.png +0 -0
- package/examples/test/res/textures/items/brain.png +0 -0
- package/examples/test/res/textures/items/brass_gear.png +0 -0
- package/examples/test/res/textures/items/brass_plate.png +0 -0
- package/examples/test/res/textures/items/bucket_death.png +0 -0
- package/examples/test/res/textures/items/bucket_pure.png +0 -0
- package/examples/test/res/textures/items/chunk_beef.png +0 -0
- package/examples/test/res/textures/items/chunk_chicken.png +0 -0
- package/examples/test/res/textures/items/chunk_fish.png +0 -0
- package/examples/test/res/textures/items/chunk_mutton.png +0 -0
- package/examples/test/res/textures/items/chunk_pork.png +0 -0
- package/examples/test/res/textures/items/chunk_rabbit.png +0 -0
- package/examples/test/res/textures/items/cloth_boots.png +0 -0
- package/examples/test/res/textures/items/cloth_boots_over.png +0 -0
- package/examples/test/res/textures/items/cloth_chest.png +0 -0
- package/examples/test/res/textures/items/cloth_chest_over.png +0 -0
- package/examples/test/res/textures/items/cloth_legs.png +0 -0
- package/examples/test/res/textures/items/cloth_legs_over.png +0 -0
- package/examples/test/res/textures/items/cluster_cinnabar.png +0 -0
- package/examples/test/res/textures/items/cluster_copper.png +0 -0
- package/examples/test/res/textures/items/cluster_gold.png +0 -0
- package/examples/test/res/textures/items/cluster_iron.png +0 -0
- package/examples/test/res/textures/items/cluster_lead.png +0 -0
- package/examples/test/res/textures/items/cluster_silver.png +0 -0
- package/examples/test/res/textures/items/cluster_tin.png +0 -0
- package/examples/test/res/textures/items/coin.png +0 -0
- package/examples/test/res/textures/items/creative_caster.png +0 -0
- package/examples/test/res/textures/items/creative_node.png +0 -0
- package/examples/test/res/textures/items/creative_obelisk.png +0 -0
- package/examples/test/res/textures/items/crimson_blade.png +0 -0
- package/examples/test/res/textures/items/crimson_boots.png +0 -0
- package/examples/test/res/textures/items/crimson_plate_chest.png +0 -0
- package/examples/test/res/textures/items/crimson_plate_helm.png +0 -0
- package/examples/test/res/textures/items/crimson_plate_legs.png +0 -0
- package/examples/test/res/textures/items/crimson_praetor_chest.png +0 -0
- package/examples/test/res/textures/items/crimson_praetor_helm.png +0 -0
- package/examples/test/res/textures/items/crimson_praetor_legs.png +0 -0
- package/examples/test/res/textures/items/crimson_rites.png +0 -0
- package/examples/test/res/textures/items/crimson_robe_chest.png +0 -0
- package/examples/test/res/textures/items/crimson_robe_helm.png +0 -0
- package/examples/test/res/textures/items/crimson_robe_legs.png +0 -0
- package/examples/test/res/textures/items/crystal_essence.png +0 -0
- package/examples/test/res/textures/items/crystal_planter.png +0 -0
- package/examples/test/res/textures/items/custom_chestplate.png +0 -0
- package/examples/test/res/textures/items/discovery.png +0 -0
- package/examples/test/res/textures/items/discovery_overlay.png +0 -0
- package/examples/test/res/textures/items/eldritch_eye.png +0 -0
- package/examples/test/res/textures/items/elemental_axe.png +0 -0
- package/examples/test/res/textures/items/elemental_hoe.png +0 -0
- package/examples/test/res/textures/items/elemental_pick.png +0 -0
- package/examples/test/res/textures/items/elemental_shovel.png +0 -0
- package/examples/test/res/textures/items/elemental_sword.png +0 -0
- package/examples/test/res/textures/items/fabric.png +0 -0
- package/examples/test/res/textures/items/filter.png +0 -0
- package/examples/test/res/textures/items/flux_sponge.png +0 -0
- package/examples/test/res/textures/items/focus_pouch.png +0 -0
- package/examples/test/res/textures/items/fortress_chest.png +0 -0
- package/examples/test/res/textures/items/fortress_helm.png +0 -0
- package/examples/test/res/textures/items/fortress_legs.png +0 -0
- package/examples/test/res/textures/items/girdle_fancy.png +0 -0
- package/examples/test/res/textures/items/girdle_hover.png +0 -0
- package/examples/test/res/textures/items/girdle_mundane.png +0 -0
- package/examples/test/res/textures/items/girdle_runic.png +0 -0
- package/examples/test/res/textures/items/girdle_runic_kinetic.png +0 -0
- package/examples/test/res/textures/items/goggles_revealing.png +0 -0
- package/examples/test/res/textures/items/golem.png +0 -0
- package/examples/test/res/textures/items/golem_bell.png +0 -0
- package/examples/test/res/textures/items/hand_mirror.png +0 -0
- package/examples/test/res/textures/items/ingot_brass.png +0 -0
- package/examples/test/res/textures/items/ingot_thaumium.png +0 -0
- package/examples/test/res/textures/items/ingot_void.png +0 -0
- package/examples/test/res/textures/items/iron_plate.png +0 -0
- package/examples/test/res/textures/items/jar_brace.png +0 -0
- package/examples/test/res/textures/items/knowledge_fragment.png +0 -0
- package/examples/test/res/textures/items/label.png +0 -0
- package/examples/test/res/textures/items/label_overlay.png +0 -0
- package/examples/test/res/textures/items/loot_bag_common.png +0 -0
- package/examples/test/res/textures/items/loot_bag_rare.png +0 -0
- package/examples/test/res/textures/items/loot_bag_uncommon.png +0 -0
- package/examples/test/res/textures/items/masterball.png +0 -0
- package/examples/test/res/textures/items/mind_biothaumic.png +0 -0
- package/examples/test/res/textures/items/mind_clockwork.png +0 -0
- package/examples/test/res/textures/items/mirrored_glass.png +0 -0
- package/examples/test/res/textures/items/module_aggression.png +0 -0
- package/examples/test/res/textures/items/module_vision.png +0 -0
- package/examples/test/res/textures/items/morphic_resonator.png +0 -0
- package/examples/test/res/textures/items/nugget_brass.png +0 -0
- package/examples/test/res/textures/items/nugget_copper.png +0 -0
- package/examples/test/res/textures/items/nugget_iron.png +0 -0
- package/examples/test/res/textures/items/nugget_lead.png +0 -0
- package/examples/test/res/textures/items/nugget_quicksilver.png +0 -0
- package/examples/test/res/textures/items/nugget_silver.png +0 -0
- package/examples/test/res/textures/items/nugget_thaumium.png +0 -0
- package/examples/test/res/textures/items/nugget_tin.png +0 -0
- package/examples/test/res/textures/items/nugget_void.png +0 -0
- package/examples/test/res/textures/items/phial.png +0 -0
- package/examples/test/res/textures/items/phial_overlay.png +0 -0
- package/examples/test/res/textures/items/primal_arrow_air.png +0 -0
- package/examples/test/res/textures/items/primal_arrow_earth.png +0 -0
- package/examples/test/res/textures/items/primal_arrow_entropy.png +0 -0
- package/examples/test/res/textures/items/primal_arrow_fire.png +0 -0
- package/examples/test/res/textures/items/primal_arrow_order.png +0 -0
- package/examples/test/res/textures/items/primal_arrow_water.png +0 -0
- package/examples/test/res/textures/items/primal_charm.png +0 -0
- package/examples/test/res/textures/items/primal_crusher.png +0 -0
- package/examples/test/res/textures/items/primordial_pearl.png +0 -0
- package/examples/test/res/textures/items/quicksilver.png +0 -0
- package/examples/test/res/textures/items/researchnotes.png +0 -0
- package/examples/test/res/textures/items/researchnotes_overlay.png +0 -0
- package/examples/test/res/textures/items/resonator.png +0 -0
- package/examples/test/res/textures/items/ring_apprentice.png +0 -0
- package/examples/test/res/textures/items/ring_fancy.png +0 -0
- package/examples/test/res/textures/items/ring_mundane.png +0 -0
- package/examples/test/res/textures/items/ring_protection.png +0 -0
- package/examples/test/res/textures/items/ring_runic.png +0 -0
- package/examples/test/res/textures/items/ring_runic_charge.png +0 -0
- package/examples/test/res/textures/items/ring_runic_regen.png +0 -0
- package/examples/test/res/textures/items/ring_verdant.png +0 -0
- package/examples/test/res/textures/items/runed_tablet.png +0 -0
- package/examples/test/res/textures/items/salis_mundus.png +0 -0
- package/examples/test/res/textures/items/sanity_checker.png +0 -0
- package/examples/test/res/textures/items/sanity_soap.png +0 -0
- package/examples/test/res/textures/items/scribing_tools.png +0 -0
- package/examples/test/res/textures/items/seals/seal_blank.png +0 -0
- package/examples/test/res/textures/items/seals/seal_breaker.png +0 -0
- package/examples/test/res/textures/items/seals/seal_breaker.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_butcher.png +0 -0
- package/examples/test/res/textures/items/seals/seal_butcher.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_empty.png +0 -0
- package/examples/test/res/textures/items/seals/seal_empty.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_empty_advanced.png +0 -0
- package/examples/test/res/textures/items/seals/seal_empty_advanced.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_fill.png +0 -0
- package/examples/test/res/textures/items/seals/seal_fill.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_fill_advanced.png +0 -0
- package/examples/test/res/textures/items/seals/seal_fill_advanced.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_guard.png +0 -0
- package/examples/test/res/textures/items/seals/seal_guard.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_guard_advanced.png +0 -0
- package/examples/test/res/textures/items/seals/seal_guard_advanced.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_harvest.png +0 -0
- package/examples/test/res/textures/items/seals/seal_harvest.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_lumber.png +0 -0
- package/examples/test/res/textures/items/seals/seal_lumber.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_pickup.png +0 -0
- package/examples/test/res/textures/items/seals/seal_pickup.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_pickup_advanced.png +0 -0
- package/examples/test/res/textures/items/seals/seal_pickup_advanced.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_provider.png +0 -0
- package/examples/test/res/textures/items/seals/seal_provider.png.mcmeta +6 -0
- package/examples/test/res/textures/items/seals/seal_use.png +0 -0
- package/examples/test/res/textures/items/seals/seal_use.png.mcmeta +6 -0
- package/examples/test/res/textures/items/shard.png +0 -0
- package/examples/test/res/textures/items/shard_balanced.png +0 -0
- package/examples/test/res/textures/items/sinister_stone.png +0 -0
- package/examples/test/res/textures/items/sinister_stone_active.png +0 -0
- package/examples/test/res/textures/items/taint_slime.png +0 -0
- package/examples/test/res/textures/items/taint_tendril.png +0 -0
- package/examples/test/res/textures/items/tallow.png +0 -0
- package/examples/test/res/textures/items/thaumium_axe.png +0 -0
- package/examples/test/res/textures/items/thaumium_boots.png +0 -0
- package/examples/test/res/textures/items/thaumium_chest.png +0 -0
- package/examples/test/res/textures/items/thaumium_gear.png +0 -0
- package/examples/test/res/textures/items/thaumium_helm.png +0 -0
- package/examples/test/res/textures/items/thaumium_hoe.png +0 -0
- package/examples/test/res/textures/items/thaumium_legs.png +0 -0
- package/examples/test/res/textures/items/thaumium_pick.png +0 -0
- package/examples/test/res/textures/items/thaumium_plate.png +0 -0
- package/examples/test/res/textures/items/thaumium_shovel.png +0 -0
- package/examples/test/res/textures/items/thaumium_sword.png +0 -0
- package/examples/test/res/textures/items/thaumometer.png +0 -0
- package/examples/test/res/textures/items/thaumonomicon.png +0 -0
- package/examples/test/res/textures/items/thaumonomicon_cheat.png +0 -0
- package/examples/test/res/textures/items/thaumostatic_harness.png +0 -0
- package/examples/test/res/textures/items/traveller_boots.png +0 -0
- package/examples/test/res/textures/items/tripletreat.png +0 -0
- package/examples/test/res/textures/items/tube_buffer.png +0 -0
- package/examples/test/res/textures/items/tube_filter.png +0 -0
- package/examples/test/res/textures/items/tube_normal.png +0 -0
- package/examples/test/res/textures/items/tube_oneway.png +0 -0
- package/examples/test/res/textures/items/tube_restrict.png +0 -0
- package/examples/test/res/textures/items/tube_valve.png +0 -0
- package/examples/test/res/textures/items/turret_advanced.png +0 -0
- package/examples/test/res/textures/items/turret_basic.png +0 -0
- package/examples/test/res/textures/items/turret_focus.png +0 -0
- package/examples/test/res/textures/items/turret_magnet.png +0 -0
- package/examples/test/res/textures/items/void_axe.png +0 -0
- package/examples/test/res/textures/items/void_boots.png +0 -0
- package/examples/test/res/textures/items/void_chest.png +0 -0
- package/examples/test/res/textures/items/void_gear.png +0 -0
- package/examples/test/res/textures/items/void_helm.png +0 -0
- package/examples/test/res/textures/items/void_hoe.png +0 -0
- package/examples/test/res/textures/items/void_legs.png +0 -0
- package/examples/test/res/textures/items/void_pick.png +0 -0
- package/examples/test/res/textures/items/void_plate.png +0 -0
- package/examples/test/res/textures/items/void_robe_chest.png +0 -0
- package/examples/test/res/textures/items/void_robe_chest_over.png +0 -0
- package/examples/test/res/textures/items/void_robe_helm.png +0 -0
- package/examples/test/res/textures/items/void_robe_legs.png +0 -0
- package/examples/test/res/textures/items/void_robe_legs_over.png +0 -0
- package/examples/test/res/textures/items/void_seed.png +0 -0
- package/examples/test/res/textures/items/void_shovel.png +0 -0
- package/examples/test/res/textures/items/void_sword.png +0 -0
- package/examples/test/res/textures/items/wand/cap_brass.png +0 -0
- package/examples/test/res/textures/items/wand/cap_brass_mat.png +0 -0
- package/examples/test/res/textures/items/wand/cap_gold.png +0 -0
- package/examples/test/res/textures/items/wand/cap_gold_mat.png +0 -0
- package/examples/test/res/textures/items/wand/cap_iron.png +0 -0
- package/examples/test/res/textures/items/wand/cap_iron_mat.png +0 -0
- package/examples/test/res/textures/items/wand/cap_thaumium.png +0 -0
- package/examples/test/res/textures/items/wand/cap_thaumium.png.mcmeta +11 -0
- package/examples/test/res/textures/items/wand/cap_thaumium_inert.png +0 -0
- package/examples/test/res/textures/items/wand/cap_thaumium_mat.png +0 -0
- package/examples/test/res/textures/items/wand/cap_void.png +0 -0
- package/examples/test/res/textures/items/wand/cap_void.png.mcmeta +11 -0
- package/examples/test/res/textures/items/wand/cap_void_inert.png +0 -0
- package/examples/test/res/textures/items/wand/cap_void_mat.png +0 -0
- package/examples/test/res/textures/items/wand/focus.png +0 -0
- package/examples/test/res/textures/items/wand/focus_builder.png +0 -0
- package/examples/test/res/textures/items/wand/focus_excavation.png +0 -0
- package/examples/test/res/textures/items/wand/focus_fire.png +0 -0
- package/examples/test/res/textures/items/wand/focus_frost.png +0 -0
- package/examples/test/res/textures/items/wand/focus_grapple.png +0 -0
- package/examples/test/res/textures/items/wand/focus_hellbat.png +0 -0
- package/examples/test/res/textures/items/wand/focus_hellbat_orn.png +0 -0
- package/examples/test/res/textures/items/wand/focus_pech.png +0 -0
- package/examples/test/res/textures/items/wand/focus_pech.png.mcmeta +3 -0
- package/examples/test/res/textures/items/wand/focus_portablehole.png +0 -0
- package/examples/test/res/textures/items/wand/focus_portablehole.png.mcmeta +3 -0
- package/examples/test/res/textures/items/wand/focus_primal.png +0 -0
- package/examples/test/res/textures/items/wand/focus_primal.png.mcmeta +3 -0
- package/examples/test/res/textures/items/wand/focus_shard.png +0 -0
- package/examples/test/res/textures/items/wand/focus_shard.png.mcmeta +3 -0
- package/examples/test/res/textures/items/wand/focus_shock.png +0 -0
- package/examples/test/res/textures/items/wand/focus_trade.png +0 -0
- package/examples/test/res/textures/items/wand/focus_warding.png +0 -0
- package/examples/test/res/textures/items/wand/focus_warding.png.mcmeta +3 -0
- package/examples/test/res/textures/items/wand/rod_blaze.png +0 -0
- package/examples/test/res/textures/items/wand/rod_blaze_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_blaze_mat.png.mcmeta +45 -0
- package/examples/test/res/textures/items/wand/rod_bone.png +0 -0
- package/examples/test/res/textures/items/wand/rod_bone_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_greatwood.png +0 -0
- package/examples/test/res/textures/items/wand/rod_greatwood_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_ice.png +0 -0
- package/examples/test/res/textures/items/wand/rod_ice_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_obsidian.png +0 -0
- package/examples/test/res/textures/items/wand/rod_obsidian_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_primal_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_primal_mat.png.mcmeta +45 -0
- package/examples/test/res/textures/items/wand/rod_quartz.png +0 -0
- package/examples/test/res/textures/items/wand/rod_quartz_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_reed.png +0 -0
- package/examples/test/res/textures/items/wand/rod_reed_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_silverwood.png +0 -0
- package/examples/test/res/textures/items/wand/rod_silverwood_mat.png +0 -0
- package/examples/test/res/textures/items/wand/rod_wood_mat.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_blaze.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_bone.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_greatwood.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_ice.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_obsidian.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_primal.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_quartz.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_reed.png +0 -0
- package/examples/test/res/textures/items/wand/staff_rod_silverwood.png +0 -0
- package/examples/test/res/textures/items/wispy_essence.png +0 -0
- package/examples/test/res/textures/models/armor/custom_legs.png +0 -0
- package/examples/test/res/textures/models/armor/custom_main.png +0 -0
- package/examples/test/res/textures/models/armor/vampireArmor_1.png +0 -0
- package/examples/test/res/textures/models/armor/vampireArmor_2.png +0 -0
- package/examples/test/scripts/custom_components/cropComponent.js +59 -0
- package/examples/test/scripts/index.js +101 -0
- package/log.md +75 -0
- package/package.json +31 -0
- package/src/cli/build.config +4 -0
- package/src/cli/build.js +211 -0
- package/src/cli/index.js +150 -0
- package/src/cli/init.js +69 -0
- package/src/cli/load.js +113 -0
- package/src/cli/tools/textureSet.js +115 -0
- package/src/cli/utils.js +82 -0
- package/src/core/addon/biome.js +29 -0
- package/src/core/addon/block/Block.js +49 -0
- package/src/core/addon/entity/client_entity.js +154 -0
- package/src/core/addon/entity/entity.js +52 -0
- package/src/core/addon/feature/ore_feature.js +26 -0
- package/src/core/addon/feature_rule.js +29 -0
- package/src/core/addon/item/attachable.js +138 -0
- package/src/core/addon/item/item.js +29 -0
- package/src/core/addon/manifest.js +71 -0
- package/src/core/addon/menu_category.js +7 -0
- package/src/core/addon/recipe/data.js +76 -0
- package/src/core/addon/recipe/recipe.js +27 -0
- package/src/core/addon/recipe/recipeFurnace.js +38 -0
- package/src/core/addon/recipe/recipeShaped.js +56 -0
- package/src/core/addon/recipe/recipeShapeless.js +35 -0
- package/src/core/biome/Biome.js +30 -0
- package/src/core/biome/biomeComponent.js +89 -0
- package/src/core/block/BasicBlock.js +127 -0
- package/src/core/block/GeometryBlock.js +14 -0
- package/src/core/block/OreBlock.js +29 -0
- package/src/core/block/RotatableBlock.js +161 -0
- package/src/core/block/block.js +107 -0
- package/src/core/block/blockComponent.js +558 -0
- package/src/core/block/cropBlock.js +42 -0
- package/src/core/entity/BasicEntity.js +167 -0
- package/src/core/entity/ClientEntity.js +41 -0
- package/src/core/entity/Entity.js +19 -0
- package/src/core/entity/NativeEntity.js +30 -0
- package/src/core/entity/Projectile.js +8 -0
- package/src/core/entity/behavior/follow_mod.js +43 -0
- package/src/core/entity/behavior/follow_parent.js +15 -0
- package/src/core/entity/behavior/random_stroll.js +69 -0
- package/src/core/entity/behavior/tempt.js +145 -0
- package/src/core/entity/componets/EntityComponet.js +485 -0
- package/src/core/entity/data/NativeEntityData.js +46 -0
- package/src/core/entity/data/data_bp.json +1 -0
- package/src/core/entity/data/data_rp.json +1 -0
- package/src/core/entity/navigation/walk.js +58 -0
- package/src/core/factory/BiomeFactory.js +15 -0
- package/src/core/factory/BlockFactory.js +159 -0
- package/src/core/factory/EntityFactory.js +83 -0
- package/src/core/factory/FeatureFactory.js +26 -0
- package/src/core/factory/ItemFactory.js +96 -0
- package/src/core/factory/RecipeFactory.js +47 -0
- package/src/core/factory/UIFactory.js +37 -0
- package/src/core/feature/OreFeature.js +19 -0
- package/src/core/feature_rule/FeatureRule.js +37 -0
- package/src/core/feature_rule/condition/BiomeFilter.js +39 -0
- package/src/core/feature_rule/condition/FeatureConditions.js +41 -0
- package/src/core/feature_rule/distribution/CoordinateDistribution.js +24 -0
- package/src/core/feature_rule/distribution/FeatureDistribution.js +45 -0
- package/src/core/index.js +1 -0
- package/src/core/item/Item.js +97 -0
- package/src/core/item/ItemComponents.js +236 -0
- package/src/core/item/armor.js +89 -0
- package/src/core/item/attachable.js +34 -0
- package/src/core/item/food.js +62 -0
- package/src/core/registry.js +17 -0
- package/src/core/texture.js +41 -0
- package/src/core/ui/ButtonMapping.js +144 -0
- package/src/core/ui/DataBindingObject.js +146 -0
- package/src/core/ui/Properties/Control.js +308 -0
- package/src/core/ui/Properties/DataBinding.js +14 -0
- package/src/core/ui/Properties/Factory.js +63 -0
- package/src/core/ui/Properties/Grid.js +98 -0
- package/src/core/ui/Properties/Input.js +146 -0
- package/src/core/ui/Properties/Layout.js +158 -0
- package/src/core/ui/Properties/ScrollView.js +158 -0
- package/src/core/ui/Properties/Sprite.js +242 -0
- package/src/core/ui/Properties/Text.js +204 -0
- package/src/core/ui/elements/Image.js +62 -0
- package/src/core/ui/elements/Label.js +62 -0
- package/src/core/ui/elements/Panel.js +50 -0
- package/src/core/ui/elements/UIElement.js +107 -0
- package/src/core/ui/registry/ServerUISystem.js +19 -0
- package/src/core/ui/systems/UISystem.js +42 -0
- package/src/core/ui/systems/server_form.js +100 -0
- package/src/templates/test_sapdon/build.config +29 -0
- package/src/templates/test_sapdon/main.mjs +0 -0
- package/src/templates/test_sapdon/mod.info +7 -0
- package/src/templates/test_sapdon/pack_icon.png +0 -0
- package/src/templates/test_sapdon/res/models/blocks/crop.geo.json +48 -0
- package/src/templates/test_sapdon/res/textures/blocks/test_log_oak.png +0 -0
- package/src/templates/test_sapdon/res/textures/blocks/test_log_top.png +0 -0
- package/src/templates/test_sapdon/res/textures/items/masterball.png +0 -0
- package/src/templates/test_sapdon/scripts/index.js +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"minecraft:agent":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:agent","materials":{"default":"agent"},"textures":{"default":"textures/entity/agent"},"geometry":{"default":"geometry.agent"},"scripts":{"pre_animation":["variable.Agent.ArmZRotation = (Math.cos(query.life_time * 114.6) + 1.0) * 1.15;","variable.Agent.ArmXRotationFactor = Math.sin(query.life_time * 80.0) * 4.6;","variable.Agent.LegXRotationFactor = Math.sin(query.life_time * 46.0) * 1.15;"],"animate":["move_controller","look_at_target"]},"animations":{"move":"animation.agent.move","look_at_target":"animation.common.look_at_target","swing_arms":"animation.agent.swing_arms","move_controller":"controller.animation.agent.move"},"render_controllers":["controller.render.agent"],"spawn_egg":{"texture":"spawn_egg","texture_index":52}}}},"minecraft:allay":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:allay","materials":{"default":"allay"},"textures":{"default":"textures/entity/allay/allay"},"geometry":{"default":"geometry.allay"},"spawn_egg":{"base_color":"#00daff","overlay_color":"#00adff"},"scripts":{"pre_animation":["variable.holding_trident = query.is_item_name_any('slot.weapon.mainhand', 'minecraft:trident');"]},"animations":{"idle":"animation.allay.idle","fly":"animation.allay.fly","hold_item":"animation.allay.hold_item","hold_item_fly":"animation.allay.hold_item_fly","look_at_target_default":"animation.allay.look_at_target.default","dance":"animation.allay.dance"},"animation_controllers":[{"general":"controller.animation.allay.general"},{"look_at_target":"controller.animation.allay.look_at_target"},{"holding":"controller.animation.allay.holding"},{"dancing":"controller.animation.allay.dancing"}],"render_controllers":["controller.render.allay"],"enable_attachables":true,"held_item_ignores_lighting":true}}},"minecraft:armor_stand":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:armor_stand","min_engine_version":"1.8.0","materials":{"default":"armor_stand"},"textures":{"default":"textures/entity/armor_stand"},"animations":{"default_pose":"animation.armor_stand.default_pose","no_pose":"animation.armor_stand.no_pose","solemn_pose":"animation.armor_stand.solemn_pose","athena_pose":"animation.armor_stand.athena_pose","brandish_pose":"animation.armor_stand.brandish_pose","honor_pose":"animation.armor_stand.honor_pose","entertain_pose":"animation.armor_stand.entertain_pose","salute_pose":"animation.armor_stand.salute_pose","riposte_pose":"animation.armor_stand.riposte_pose","zombie_pose":"animation.armor_stand.zombie_pose","cancan_a_pose":"animation.armor_stand.cancan_a_pose","cancan_b_pose":"animation.armor_stand.cancan_b_pose","hero_pose":"animation.armor_stand.hero_pose","wiggle":"animation.armor_stand.wiggle","controller.pose":"controller.animation.armor_stand.pose","controller.wiggling":"controller.animation.armor_stand.wiggle"},"scripts":{"initialize":["variable.armor_stand.pose_index = 0;","variable.armor_stand.hurt_time = 0;"],"animate":["controller.pose","controller.wiggling"]},"geometry":{"default":"geometry.armor_stand"},"render_controllers":["controller.render.armor_stand"],"enable_attachables":true}}},"minecraft:armor_stand.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:armor_stand","materials":{"default":"armor_stand"},"textures":{"default":"textures/entity/armor_stand"},"animations":{"default_pose":"animation.armor_stand.default_pose","no_pose":"animation.armor_stand.no_pose","solemn_pose":"animation.armor_stand.solemn_pose","athena_pose":"animation.armor_stand.athena_pose","brandish_pose":"animation.armor_stand.brandish_pose","honor_pose":"animation.armor_stand.honor_pose","entertain_pose":"animation.armor_stand.entertain_pose","salute_pose":"animation.armor_stand.salute_pose","riposte_pose":"animation.armor_stand.riposte_pose","zombie_pose":"animation.armor_stand.zombie_pose","cancan_a_pose":"animation.armor_stand.cancan_a_pose","cancan_b_pose":"animation.armor_stand.cancan_b_pose","hero_pose":"animation.armor_stand.hero_pose","wiggle":"animation.armor_stand.wiggle"},"animation_controllers":[{"pose":"controller.animation.armor_stand.pose"},{"wiggling":"controller.animation.armor_stand.wiggle"}],"geometry":{"default":"geometry.armor_stand"},"render_controllers":["controller.render.armor_stand"],"enable_attachables":true}}},"minecraft:arrow":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:arrow","materials":{"default":"arrow"},"textures":{"default":"textures/entity/arrows"},"geometry":{"default":"geometry.arrow"},"animations":{"move":"animation.arrow.move"},"scripts":{"pre_animation":["variable.shake = query.shake_time - query.frame_alpha;","variable.shake_power = variable.shake > 0.0 ? -Math.sin(variable.shake * 200.0) * variable.shake : 0.0;"],"animate":["move"]},"render_controllers":["controller.render.arrow"]}}},"minecraft:axolotl":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:axolotl","materials":{"default":"axolotl","limbs":"axolotl_limbs"},"textures":{"blue":"textures/entity/axolotl/axolotl_blue","cyan":"textures/entity/axolotl/axolotl_cyan","gold":"textures/entity/axolotl/axolotl_gold","lucy":"textures/entity/axolotl/axolotl_lucy","wild":"textures/entity/axolotl/axolotl_wild"},"geometry":{"default":"geometry.axolotl"},"animations":{"idle_float":"animation.axolotl.idle_underwater","idle_floor":"animation.axolotl.idle_floor","idle_floor_water":"animation.axolotl.idle_floor_underwater","swim":"animation.axolotl.swim","walk_floor":"animation.axolotl.walk_floor","walk_floor_water":"animation.axolotl.walk_floor_underwater","play_dead":"animation.axolotl.play_dead","swim_angle":"animation.axolotl.swim_angle","look_at_target":"animation.common.look_at_target"},"scripts":{"pre_animation":["variable.moving = query.ground_speed > 0 || query.vertical_speed > 0;","variable.pitch = query.body_x_rotation;"]},"animation_controllers":[{"general":"controller.animation.axolotl.general"},{"move":"controller.animation.axolotl.move"}],"render_controllers":["controller.render.axolotl"],"spawn_egg":{"base_color":"#0xfbc1e3","overlay_color":"#0xa62d74"}}}},"minecraft:bat":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:bat","materials":{"default":"bat"},"textures":{"default":"textures/entity/bat"},"geometry":{"default":"geometry.bat"},"scripts":{"scale":"0.35"},"animations":{"resting":"animation.bat.resting","flying":"animation.bat.flying"},"animation_controllers":[{"move":"controller.animation.bat.move"}],"render_controllers":["controller.render.bat"],"spawn_egg":{"texture":"spawn_egg","texture_index":18}}}},"minecraft:bed":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:bed","textures":{"default":"textures/entity/bed/white","white":"textures/entity/bed/white","orange":"textures/entity/bed/orange","magenta":"textures/entity/bed/magenta","light_blue":"textures/entity/bed/light_blue","yellow":"textures/entity/bed/yellow","lime":"textures/entity/bed/lime","pink":"textures/entity/bed/pink","gray":"textures/entity/bed/gray","silver":"textures/entity/bed/silver","cyan":"textures/entity/bed/cyan","purple":"textures/entity/bed/purple","blue":"textures/entity/bed/blue","brown":"textures/entity/bed/brown","green":"textures/entity/bed/green","red":"textures/entity/bed/red","black":"textures/entity/bed/black"},"geometry":{"default":"geometry.bed"}}}},"minecraft:bee":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:bee","materials":{"default":"bee"},"textures":{"default":"textures/entity/bee/bee","angry":"textures/entity/bee/bee_angry","nectar":"textures/entity/bee/bee_nectar","angry_nectar":"textures/entity/bee/bee_angry_nectar"},"geometry":{"default":"geometry.bee"},"animations":{"flying":"animation.bee.flying","drip":"controller.animation.bee.drip","controller_bee_sting":"controller.animation.bee.sting","bee_sting":"animation.bee.sting","bee_no_stinger":"animation.bee.no_stinger","bee_fly_bobbing":"animation.bee.fly.bobbing","bee_root_controller":"controller.animation.bee.root"},"particle_effects":{"nectar_dripping":"minecraft:nectar_drip_particle"},"scripts":{"animate":["bee_root_controller",{"bee_no_stinger":"query.mark_variant == 1"}]},"render_controllers":["controller.render.bee"],"spawn_egg":{"texture":"egg_bee","texture_index":0}}}},"minecraft:blaze":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:blaze","min_engine_version":"1.8.0","materials":{"body":"blaze_body","head":"blaze_head"},"textures":{"default":"textures/entity/blaze"},"geometry":{"default":"geometry.blaze"},"animations":{"look_at_target":"animation.common.look_at_target","move":"animation.blaze.move"},"particle_effects":{"charged_flames":"minecraft:mobflame_emitter"},"animation_controllers":[{"move":"controller.animation.blaze.move"},{"flame":"controller.animation.blaze.flame"}],"render_controllers":["controller.render.blaze"],"spawn_egg":{"texture":"spawn_egg","texture_index":21}}}},"minecraft:blaze.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:blaze","materials":{"body":"blaze_head","head":"blaze_body"},"textures":{"default":"textures/entity/blaze"},"geometry":{"default":"geometry.blaze"},"animations":{"look_at_target":"animation.common.look_at_target","move":"animation.blaze.move"},"particle_effects":{"charged_flames":"minecraft:mobflame_emitter"},"animation_controllers":[{"move":"controller.animation.blaze.move"},{"flame":"controller.animation.blaze.flame"}],"render_controllers":["controller.render.blaze"],"spawn_egg":{"texture":"spawn_egg","texture_index":21}}}},"minecraft:boat":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:boat","textures":{"default":"textures/entity/boat/boat_acacia","mangrove":"textures/entity/boat/mangrove_boat"},"geometry":{"default":"geometry.boat"}}}},"minecraft:cat":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:cat","materials":{"default":"cat"},"textures":{"white":"textures/entity/cat/white","black":"textures/entity/cat/tuxedo","red":"textures/entity/cat/redtabby","siamese":"textures/entity/cat/siamesecat","british":"textures/entity/cat/britishshorthair","calico":"textures/entity/cat/calico","persian":"textures/entity/cat/persian","ragdoll":"textures/entity/cat/ragdoll","tabby":"textures/entity/cat/tabby","jellie":"textures/entity/cat/jellie","all_black":"textures/entity/cat/allblackcat","white_tame":"textures/entity/cat/white_tame","black_tame":"textures/entity/cat/tuxedo_tame","red_tame":"textures/entity/cat/redtabby_tame","siamese_tame":"textures/entity/cat/siamesecat_tame","british_tame":"textures/entity/cat/britishshorthair_tame","calico_tame":"textures/entity/cat/calico_tame","persian_tame":"textures/entity/cat/persian_tame","ragdoll_tame":"textures/entity/cat/ragdoll_tame","tabby_tame":"textures/entity/cat/tabby_tame","all_black_tame":"textures/entity/cat/allblackcat_tame","jellie_tame":"textures/entity/cat/jellie_tame"},"geometry":{"default":"geometry.cat"},"animations":{"sneak":"animation.cat.sneak","walk":"animation.cat.walk","sprint":"animation.cat.sprint","sit":"animation.cat.sit","look_at_target":"animation.common.look_at_target","baby_transform":"animation.cat.baby_transform","lie_down":"animation.cat.lie_down"},"animation_controllers":[{"look_at_target":"controller.animation.cat.look_at_target"},{"move":"controller.animation.cat.move"},{"baby":"controller.animation.cat.baby"}],"render_controllers":["controller.render.cat"],"spawn_egg":{"texture":"spawn_egg","texture_index":53}}}},"minecraft:cave_spider":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:cave_spider","min_engine_version":"1.8.0","materials":{"default":"spider","invisible":"spider_invisible"},"textures":{"default":"textures/entity/spider/cave_spider"},"geometry":{"default":"geometry.spider.v1.8"},"scripts":{"scale":"0.7"},"animations":{"default_leg_pose":"animation.spider.default_leg_pose","look_at_target":"animation.spider.look_at_target","walk":"animation.spider.walk"},"animation_controllers":[{"move":"controller.animation.spider.move"}],"render_controllers":["controller.render.spider"],"spawn_egg":{"texture":"spawn_egg","texture_index":22}}}},"minecraft:cave_spider.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:cave_spider","materials":{"default":"spider","invisible":"spider_invisible"},"textures":{"default":"textures/entity/spider/cave_spider"},"geometry":{"default":"geometry.spider"},"scripts":{"scale":"0.7"},"animations":{"default_leg_pose":"animation.spider.default_leg_pose","look_at_target":"animation.spider.look_at_target","walk":"animation.spider.walk"},"animation_controllers":[{"move":"controller.animation.spider.move"}],"render_controllers":["controller.render.spider"],"spawn_egg":{"texture":"spawn_egg","texture_index":22}}}},"minecraft:chest_boat":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:chest_boat","textures":{"default":"textures/entity/boat/chest_boat_oak","oak":"textures/entity/boat/chest_boat_oak","spruce":"textures/entity/boat/chest_boat_spruce","birch":"textures/entity/boat/chest_boat_birch","jungle":"textures/entity/boat/chest_boat_jungle","acacia":"textures/entity/boat/chest_boat_acacia","darkoak":"textures/entity/boat/chest_boat_darkoak","mangrove":"textures/entity/boat/chest_boat_mangrove"},"geometry":{"default":"geometry.chest_boat"}}}},"minecraft:chest_minecart":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:chest_minecart","min_engine_version":"1.8.0","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart.v1.8"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move"},"render_controllers":["controller.render.minecart"]}}},"minecraft:chest_minecart.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:chest_minecart","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move.v1.0"},"render_controllers":["controller.render.minecart"]}}},"minecraft:chicken":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:chicken","min_engine_version":"1.12.0","materials":{"default":"chicken","legs":"chicken_legs"},"textures":{"default":"textures/entity/chicken"},"geometry":{"default":"geometry.chicken.v1.12"},"animations":{"move":"animation.chicken.move","general":"animation.chicken.general","look_at_target":"animation.common.look_at_target","baby_transform":"animation.chicken.baby_transform"},"scripts":{"animate":["general",{"move":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.chicken"],"spawn_egg":{"texture":"spawn_egg","texture_index":0}}}},"minecraft:chicken.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:chicken","materials":{"default":"chicken","legs":"chicken_legs"},"textures":{"default":"textures/entity/chicken"},"geometry":{"default":"geometry.chicken"},"animations":{"move":"animation.chicken.move","general":"animation.chicken.general.v1.0","look_at_target":"animation.common.look_at_target","baby_transform":"animation.chicken.baby_transform"},"scripts":{"animate":["general",{"move":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.chicken"],"spawn_egg":{"texture":"spawn_egg","texture_index":0}}}},"minecraft:cod":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:cod","materials":{"default":"cod"},"textures":{"default":"textures/entity/fish/cod"},"geometry":{"default":"geometry.cod"},"scripts":{"pre_animation":["variable.ZRot = !query.is_in_water ? Math.cos((query.time_stamp + query.frame_alpha) * 14.32) * 90 : 0.0;","variable.AnimationAmountBlend = Math.lerp(variable.AnimationAmountPrev, variable.AnimationAmount, query.frame_alpha);"]},"animations":{"flop":"animation.cod.flop","swim":"animation.cod.swim"},"animation_controllers":[{"general":"controller.animation.fish.general"}],"render_controllers":["controller.render.cod"],"spawn_egg":{"texture":"spawn_egg","texture_index":45}}}},"minecraft:command_block_minecart":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:command_block_minecart","min_engine_version":"1.8.0","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart.v1.8"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move"},"render_controllers":["controller.render.minecart"]}}},"minecraft:command_block_minecart.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:command_block_minecart","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move.v1.0"},"render_controllers":["controller.render.minecart"]}}},"minecraft:cow":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:cow","min_engine_version":"1.8.0","materials":{"default":"cow"},"textures":{"default":"textures/entity/cow/cow"},"geometry":{"default":"geometry.cow.v1.8"},"animations":{"setup":"animation.cow.setup","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.cow.baby_transform"},"scripts":{"animate":["setup",{"walk":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.cow"],"spawn_egg":{"texture":"spawn_egg","texture_index":1}}}},"minecraft:cow.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:cow","materials":{"default":"cow"},"textures":{"default":"textures/entity/cow/cow"},"geometry":{"default":"geometry.cow"},"animations":{"setup":"animation.cow.setup.v1.0","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.cow.baby_transform"},"scripts":{"animate":["setup",{"walk":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.cow"],"spawn_egg":{"texture":"spawn_egg","texture_index":1}}}},"minecraft:creeper":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:creeper","min_engine_version":"1.8.0","materials":{"default":"creeper","charged":"charged_creeper"},"textures":{"default":"textures/entity/creeper/creeper","charged":"textures/entity/creeper/creeper_armor"},"geometry":{"default":"geometry.creeper.v1.8","charged":"geometry.creeper.charged.v1.8"},"spawn_egg":{"texture":"spawn_egg","texture_index":6},"scripts":{"pre_animation":["variable.wobble = Math.sin(query.swell_amount * 5730) * query.swell_amount * 0.01 + 1.0;","variable.swelling_scale1 = (Math.pow(Math.clamp(query.swell_amount, 0.0, 1.0), 4.0) * 0.4 + 1.0) * variable.wobble;","variable.swelling_scale2 = (Math.pow(Math.clamp(query.swell_amount, 0.0, 1.0), 4.0) * 0.1 + 1.0) / variable.wobble;","variable.leg_rot = Math.cos(query.modified_distance_moved * 38.17326) * 80.22 * query.modified_move_speed;","variable.flash = Math.mod(Math.Round(query.swell_amount * 10.0), 2.0);"]},"animations":{"creeper_head":"animation.common.look_at_target","creeper_legs":"animation.creeper.legs","creeper_swelling":"animation.creeper.swelling"},"animation_controllers":[{"creeper_head":"controller.animation.creeper.head"},{"creeper_legs":"controller.animation.creeper.legs"},{"creeper_swelling":"controller.animation.creeper.swelling"}],"render_controllers":["controller.render.creeper","controller.render.creeper_armor"]}}},"minecraft:creeper.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:creeper","materials":{"default":"creeper","charged":"charged_creeper"},"textures":{"default":"textures/entity/creeper/creeper","charged":"textures/entity/creeper/creeper_armor"},"geometry":{"default":"geometry.creeper","charged":"geometry.creeper.charged"},"spawn_egg":{"texture":"spawn_egg","texture_index":6},"scripts":{"pre_animation":["variable.wobble = Math.sin(query.swell_amount * 5730) * query.swell_amount * 0.01 + 1.0;","variable.swelling_scale1 = (Math.pow(Math.clamp(query.swell_amount, 0.0, 1.0), 4.0) * 0.4 + 1.0) * variable.wobble;","variable.swelling_scale2 = (Math.pow(Math.clamp(query.swell_amount, 0.0, 1.0), 4.0) * 0.1 + 1.0) / variable.wobble;","variable.leg_rot = Math.cos(query.modified_distance_moved * 38.17326) * 80.22 * query.modified_move_speed;","variable.flash = Math.mod(Math.Round(query.swell_amount * 10.0), 2.0);"]},"animations":{"creeper_head":"animation.common.look_at_target","creeper_legs":"animation.creeper.legs","creeper_swelling":"animation.creeper.swelling"},"animation_controllers":[{"creeper_head":"controller.animation.creeper.head"},{"creeper_legs":"controller.animation.creeper.legs"},{"creeper_swelling":"controller.animation.creeper.swelling"}],"render_controllers":["controller.render.creeper","controller.render.creeper_armor"]}}},"minecraft:dolphin":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:dolphin","materials":{"default":"dolphin"},"textures":{"default":"textures/entity/dolphin"},"geometry":{"default":"geometry.dolphin"},"animations":{"move":"animation.dolphin.move"},"animation_controllers":[{"general":"controller.animation.dolphin.general"}],"render_controllers":["controller.render.dolphin"],"spawn_egg":{"texture":"spawn_egg","texture_index":49}}}},"minecraft:donkey_v1":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:donkey","materials":{"default":"horse"},"textures":{"donkey":"textures/entity/horse/donkey","markings_none":"textures/entity/horse/horse_markings_none","armor_none":"textures/entity/horse/armor/horse_armor_none"},"geometry":{"default":"geometry.horse"},"animations":{"setup":"animation.horse.setup","baby_transform":"animation.horse.baby_transform","walk":"animation.horse.walk","eat":"animation.horse.eat","stand":"animation.horse.stand","shake_tail":"animation.horse.shake_tail","mouth":"animation.horse.mouth","look_at_player":"animation.horse.look_at_player"},"scripts":{"scale":"0.87","initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;","variable.leg_back_origin = query.bone_origin('leg1a');","variable.leg_front_origin = query.bone_origin('leg3a');","variable.head_rotation = query.bone_rotation('head');"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.walk_tail_angle = math.clamp(query.modified_move_speed * 50.0, 0.0, 90.0) * (1.0 - variable.stand_anim);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_walk_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_walk_factor * 45.8 * query.modified_move_speed;","variable.leg_stand = math.cos((query.life_time * 20.0) * 34.38) * variable.stand_anim;","variable.baby_ratio = query.is_baby ? ((0.0625 - query.model_scale) * 16.0) : 0.0;"],"animate":["setup",{"baby_transform":"query.is_baby"},{"walk":"variable.stand_anim < 0.5"},{"stand":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"shake_tail":"variable.shake_tail"},"mouth","look_at_player"]},"render_controllers":["controller.render.donkey.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":30}}}},"minecraft:donkey_v2":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:donkey","min_engine_version":"1.2.6","materials":{"default":"horse"},"textures":{"donkey":"textures/entity/horse2/donkey","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v2"},"animations":{"setup":"animation.horse.v2.setup","baby_transform":"animation.horse.v2.baby_transform","walk":"animation.horse.v2.walk","eat":"animation.horse.v2.eat","stand":"animation.horse.v2.stand","tail":"animation.horse.v2.tail"},"scripts":{"scale":"0.87","initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;","variable.leg1a_aabb = query.bone_aabb('leg1a');","variable.y_adjust = query.is_baby ? 0.0 : (variable.leg1a_aabb.max.y - variable.leg1a_aabb.min.y) * (1.0 - (query.model_scale * 16.0));"],"animate":["setup",{"baby_transform":"query.is_baby"},"walk","stand",{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.donkey.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":30}}}},"minecraft:donkey_v3":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:donkey","min_engine_version":"1.17.10","materials":{"default":"horse"},"textures":{"donkey":"textures/entity/horse2/donkey","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v3"},"animations":{"baby_transform":"animation.horse.v3.baby_transform","walk":"animation.horse.v3.walk","eat":"animation.horse.v3.eat","rear":"animation.horse.v3.rear","tail":"animation.horse.v3.tail","look_at_player":"animation.horse.v3.look_at_player"},"scripts":{"scale":"0.87","initialize":["variable.eat_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;"],"animate":[{"baby_transform":"query.is_baby"},"walk","look_at_player",{"rear":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.donkey.v3"],"spawn_egg":{"texture":"spawn_egg","texture_index":30}}}},"minecraft:dragon_fireball":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:dragon_fireball","materials":{"default":"fireball"},"textures":{"default":"textures/items/dragon_fireball"},"geometry":{"default":"geometry.fireball"},"animations":{"face_player":"animation.actor.billboard"},"scripts":{"scale":"2.0","animate":["face_player"]},"render_controllers":["controller.render.fireball"]}}},"minecraft:drowned":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:drowned","min_engine_version":"1.16.0","materials":{"default":"drowned"},"textures":{"default":"textures/entity/zombie/drowned"},"geometry":{"default":"geometry.zombie.drowned.v1.16"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"],"animate":[{"humanoid_big_head":"query.is_baby"},"look_at_target","move",{"riding.arms":"query.is_riding"},{"riding.legs":"query.is_riding"},"holding",{"charging":"query.is_charging"},"attack_controller",{"brandish_spear":"variable.is_brandishing_spear"},"bob",{"damage_nearby_mobs":"variable.damage_nearby_mobs"},{"use_item_progress":"( variable.use_item_interval_progress > 0.0 ) || ( variable.use_item_startup_progress > 0.0 )"},{"swimming":"variable.swim_amount > 0.0"}]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","look_at_target":"controller.animation.humanoid.look_at_target","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","use_item_progress":"animation.humanoid.use_item_progress","attack_controller":"controller.animation.drowned.attack.rotations","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","attack_rotations":"animation.drowned.attack.rotations","swimming":"animation.zombie.swimming"},"render_controllers":["controller.render.drowned"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":48}}}},"minecraft:drowned.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:drowned","materials":{"default":"drowned"},"textures":{"default":"textures/entity/zombie/drowned"},"geometry":{"default":"geometry.zombie.drowned"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"],"animate":[{"humanoid_big_head":"query.is_baby"},"humanoid_base_pose","look_at_target","move",{"riding.arms":"query.is_riding"},{"riding.legs":"query.is_riding"},"holding",{"charging":"query.is_charging"},"attack_controller",{"brandish_spear":"variable.is_brandishing_spear"},"bob",{"damage_nearby_mobs":"variable.damage_nearby_mobs"},{"use_item_progress":"( variable.use_item_interval_progress > 0.0 ) || ( variable.use_item_startup_progress > 0.0 )"},{"swimming":"variable.swim_amount > 0.0"}]},"animations":{"humanoid_big_head":"animation.humanoid.big_head.v1.0","humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target":"controller.animation.humanoid.look_at_target","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","attack_controller":"controller.animation.drowned.attack.rotations","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","attack_rotations":"animation.drowned.attack.rotations.v1.0","swimming":"animation.drowned.swimming.v1.0"},"render_controllers":["controller.render.drowned"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":48}}}},"minecraft:egg":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:egg","materials":{"default":"egg"},"textures":{"default":"textures/items/egg"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.item_sprite"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:elder_guardian":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:elder_guardian","min_engine_version":"1.8.0","materials":{"default":"guardian","ghost":"guardian_ghost"},"textures":{"default":"textures/entity/guardian","elder":"textures/entity/guardian_elder","beam":"textures/entity/guardian_beam"},"geometry":{"default":"geometry.guardian.v1.8","ghost":"geometry.guardian"},"animations":{"setup":"animation.guardian.setup","spikes":"animation.guardian.spikes","swim":"animation.guardian.swim","look_at_target":"animation.common.look_at_target","move_eye":"animation.guardian.move_eye"},"scripts":{"initialize":["variable.spike_animation_speed = 0.0;","variable.tail_animation_speed = 0.0;","variable.tail_swim = 0.0;"],"pre_animation":["variable.spike_shake = Math.sin(query.life_time * 2000)/50;","variable.spike_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? (Math.round(Math.sin(query.life_time * 2000)) == 0.0 ? (Math.random(0.0, 1.0)) : (variable.spike_animation_speed)) : (query.is_moving ? (variable.spike_animation_speed - variable.spike_animation_speed * 0.06) : (variable.spike_animation_speed + (1.0 - variable.spike_animation_speed) * 0.06)));","variable.spike_extension = (1.0 - variable.spike_animation_speed) * 0.55;","variable.tail_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? 2.0 : query.is_moving ? (variable.tail_animation_speed < 0.5 ? 4.0 : variable.tail_animation_speed + (0.5 - variable.tail_animation_speed) * 0.1) : variable.tail_animation_speed + (0.125 - variable.tail_animation_speed) * 0.2);","variable.tail_swim = query.life_time < 0.1 ? 0.0 : (variable.tail_swim + variable.tail_animation_speed);","variable.tail_base_angle = Math.sin(variable.tail_swim*20.0);"],"scale":"2.35","animate":["setup","spikes","swim","look_at_target","move_eye"]},"render_controllers":["controller.render.guardian"],"spawn_egg":{"texture":"spawn_egg","texture_index":36}}}},"minecraft:elder_guardian.entity.v1.0.json":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:elder_guardian","materials":{"default":"guardian","ghost":"guardian_ghost"},"textures":{"default":"textures/entity/guardian","elder":"textures/entity/guardian_elder","beam":"textures/entity/guardian_beam"},"geometry":{"default":"geometry.guardian","ghost":"geometry.guardian"},"animations":{"setup":"animation.guardian.setup","spikes":"animation.guardian.spikes.v1.0","swim":"animation.guardian.swim","look_at_target":"animation.common.look_at_target","move_eye":"animation.guardian.move_eye.v1.0"},"scripts":{"initialize":["variable.spike_animation_speed = 0.0;","variable.tail_animation_speed = 0.0;","variable.tail_swim = 0.0;"],"pre_animation":["variable.spike_shake = Math.sin(query.life_time * 2000)/50;","variable.spike_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? (Math.round(Math.sin(query.life_time * 2000)) == 0.0 ? (Math.random(0.0, 1.0)) : (variable.spike_animation_speed)) : (query.is_moving ? (variable.spike_animation_speed - variable.spike_animation_speed * 0.06) : (variable.spike_animation_speed + (1.0 - variable.spike_animation_speed) * 0.06)));","variable.spike_extension = (1.0 - variable.spike_animation_speed) * 0.55;","variable.tail_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? 2.0 : query.is_moving ? (variable.tail_animation_speed < 0.5 ? 4.0 : variable.tail_animation_speed + (0.5 - variable.tail_animation_speed) * 0.1) : variable.tail_animation_speed + (0.125 - variable.tail_animation_speed) * 0.2);","variable.tail_swim = query.life_time < 0.1 ? 0.0 : (variable.tail_swim + variable.tail_animation_speed);","variable.tail_base_angle = Math.sin(variable.tail_swim*20.0);"],"scale":"2.35","animate":["setup","spikes","swim","look_at_target","move_eye"]},"render_controllers":["controller.render.guardian"],"spawn_egg":{"texture":"spawn_egg","texture_index":36}}}},"minecraft:enderman":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:enderman","min_engine_version":"1.8.0","materials":{"default":"enderman","invisible":"enderman_invisible"},"textures":{"default":"textures/entity/enderman/enderman"},"geometry":{"default":"geometry.enderman.v1.8"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 28.65;"]},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","attack.rotations":"animation.humanoid.attack.rotations","bob":"animation.humanoid.bob","base_pose":"animation.enderman.base_pose","arms_legs":"animation.enderman.arms_legs","carrying":"animation.enderman.carrying","scary_face":"animation.enderman.scary_face"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"attack":"controller.animation.humanoid.attack"},{"bob":"controller.animation.humanoid.bob"},{"base_pose":"controller.animation.enderman.base_pose"},{"carrying":"controller.animation.enderman.carrying"},{"scary_face":"controller.animation.enderman.scary_face"}],"render_controllers":["controller.render.enderman"],"spawn_egg":{"texture":"spawn_egg","texture_index":7}}}},"minecraft:enderman.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:enderman","materials":{"default":"enderman","invisible":"enderman_invisible"},"textures":{"default":"textures/entity/enderman/enderman"},"geometry":{"default":"geometry.enderman"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 28.65;"]},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","attack.rotations":"animation.humanoid.attack.rotations","bob":"animation.humanoid.bob","base_pose":"animation.enderman.base_pose_v1.0","arms_legs":"animation.enderman.arms_legs","carrying":"animation.enderman.carrying","scary_face":"animation.enderman.scary_face_v1.0"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"attack":"controller.animation.humanoid.attack"},{"bob":"controller.animation.humanoid.bob"},{"base_pose":"controller.animation.enderman.base_pose"},{"carrying":"controller.animation.enderman.carrying"},{"scary_face":"controller.animation.enderman.scary_face"}],"render_controllers":["controller.render.enderman"],"spawn_egg":{"texture":"spawn_egg","texture_index":7}}}},"minecraft:endermite":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:endermite","materials":{"default":"endermite"},"textures":{"default":"textures/entity/endermite"},"geometry":{"default":"geometry.endermite"},"animations":{"move":"animation.endermite.move"},"animation_controllers":[{"move":"controller.animation.endermite.move"}],"render_controllers":["controller.render.endermite"],"spawn_egg":{"texture":"spawn_egg","texture_index":25}}}},"minecraft:ender_crystal":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ender_crystal","materials":{"default":"ender_crystal"},"textures":{"default":"textures/entity/endercrystal/endercrystal","beam":"textures/entity/endercrystal/endercrystal_beam"},"geometry":{"default":"geometry.ender_crystal"},"animations":{"move":"animation.ender_crystal.move"},"scripts":{"initialize":["variable.time_offset = Math.random(0, 100000);"],"animate":["move"],"should_update_effects_offscreen":"1.0"},"render_controllers":["controller.render.ender_crystal"]}}},"minecraft:ender_dragon":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ender_dragon","materials":{"default":"ender_dragon","beam_material":"entity_beam","death_material":"entity_beam_additive","dissolve_0":"entity_dissolve_layer0.skinning","dissolve_1":"entity_dissolve_layer1.skinning"},"textures":{"default":"textures/entity/dragon/dragon","exploding":"textures/entity/dragon/dragon_exploding","beam":"textures/entity/endercrystal/endercrystal_beam"},"geometry":{"default":"geometry.dragon"},"scripts":{"pre_animation":["variable.flap_time = query.wing_flap_position * 360.0;","variable.base_rotation = Math.sin(variable.flap_time - 57.3) + 57.3;","variable.rotation_factor = (variable.base_rotation * variable.base_rotation + variable.base_rotation * 114.6) * 2.87;","variable.base_rotation_translate = Math.sin(variable.flap_time - 57.3) + 1.0;","variable.rotation_factor_translate = (variable.base_rotation_translate * variable.base_rotation_translate + variable.base_rotation_translate * 2.0) * 0.05;","variable.pre_rotation_raw = Math.mod(v.historical_frame_5.rot_y - v.historical_frame_10.rot_y + 180.0, 360.0);","variable.pre_rotation = variable.pre_rotation_raw < 0.0 ? variable.pre_rotation_raw + 180.0 : variable.pre_rotation_raw - 180.0;","variable.piece_rotation_raw = Math.mod(v.historical_frame_5.rot_y + (variable.pre_rotation / 2.0) + 180.0, 360.0);","variable.piece_rotation = variable.piece_rotation_raw < 0.0 ? variable.piece_rotation_raw + 180.0 : variable.piece_rotation_raw - 180.0;","variable.rotationScale = 1.5;","variable.death_effect_duration = 200.0;","variable.death_alpha = (1.0 - (query.death_ticks + query.frame_alpha) / variable.death_effect_duration) * 2.0 + 0.3;","variable.pitch = -(math.min_angle(v.historical_frame_5.pos_y - v.historical_frame_10.pos_y)) * 10.0;","variable.roll = math.min_angle(v.historical_frame_5.rot_y - v.historical_frame_10.rot_y) * variable.rotationScale;","variable.clamped_pitch = math.clamp(variable.pitch, -30, 30);","variable.clamped_roll = math.clamp(variable.roll, -45, 45);","variable.neck_distance = 10.0;","variable.neck_1_rotation_x = Math.cos(variable.flap_time) * 8.6 + (query.is_sitting ? 0.0 : (v.historical_frame_5.pos_y - v.historical_frame_6.pos_y)) * variable.rotationScale * 5.0;","variable.neck_1_rotation_y_raw = Math.mod((v.historical_frame_5.rot_y - v.historical_frame_6.rot_y) + 180.0, 360.0);","variable.neck_1_rotation_y = (variable.neck_1_rotation_y_raw < 0.0 ? (variable.neck_1_rotation_y_raw + 180.0) : (variable.neck_1_rotation_y_raw - 180.0)) * variable.rotationScale;","variable.neck_1_rotation_z_raw = Math.mod((v.historical_frame_5.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.neck_1_rotation_z = -(variable.neck_1_rotation_z_raw < 0.0 ? (variable.neck_1_rotation_z_raw + 180.0) : (variable.neck_1_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.neck_1_position_x = 0.0;","variable.neck_1_position_y = -20.0;","variable.neck_1_position_z = -12.0;","variable.neck_2_rotation_x = Math.cos(25.79 + variable.flap_time) * 8.6 + (query.is_sitting ? 1.0 : (v.historical_frame_4.pos_y - v.historical_frame_6.pos_y)) * variable.rotationScale * 5.0;","variable.neck_2_rotation_y_raw = Math.mod((v.historical_frame_4.rot_y - v.historical_frame_6.rot_y) + 180.0, 360.0);","variable.neck_2_rotation_y = (variable.neck_2_rotation_y_raw < 0.0 ? (variable.neck_2_rotation_y_raw + 180.0) : (variable.neck_2_rotation_y_raw - 180.0)) * variable.rotationScale;","variable.neck_2_rotation_z_raw = Math.mod((v.historical_frame_4.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.neck_2_rotation_z = -(variable.neck_2_rotation_z_raw < 0.0 ? (variable.neck_2_rotation_z_raw + 180.0) : (variable.neck_2_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.neck_2_position_x = variable.neck_1_position_x - Math.sin(variable.neck_1_rotation_y) * Math.cos(variable.neck_1_rotation_x) * variable.neck_distance;","variable.neck_2_position_y = variable.neck_1_position_y - Math.sin(variable.neck_1_rotation_x) * variable.neck_distance;","variable.neck_2_position_z = variable.neck_1_position_z - Math.cos(variable.neck_1_rotation_y) * Math.cos(variable.neck_1_rotation_x) * variable.neck_distance;","variable.neck_3_rotation_x = Math.cos(51.57 + variable.flap_time) * 8.6 + (query.is_sitting ? 2.0 : (v.historical_frame_3.pos_y - v.historical_frame_6.pos_y)) * variable.rotationScale * 5.0;","variable.neck_3_rotation_y_raw = Math.mod((v.historical_frame_3.rot_y - v.historical_frame_6.rot_y + 180.0), 360.0);","variable.neck_3_rotation_y = (variable.neck_3_rotation_y_raw < 0.0 ? (variable.neck_3_rotation_y_raw + 180.0) : (variable.neck_3_rotation_y_raw - 180.0)) * variable.rotationScale;","variable.neck_3_rotation_z_raw = Math.mod((v.historical_frame_3.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.neck_3_rotation_z = -(variable.neck_3_rotation_z_raw < 0.0 ? (variable.neck_3_rotation_z_raw + 180.0) : (variable.neck_3_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.neck_3_position_x = variable.neck_2_position_x - Math.sin(variable.neck_2_rotation_y) * Math.cos(variable.neck_2_rotation_x) * variable.neck_distance;","variable.neck_3_position_y = variable.neck_2_position_y - Math.sin(variable.neck_2_rotation_x) * variable.neck_distance;","variable.neck_3_position_z = variable.neck_2_position_z - Math.cos(variable.neck_2_rotation_y) * Math.cos(variable.neck_2_rotation_x) * variable.neck_distance;","variable.neck_4_rotation_x = Math.cos(77.36 + variable.flap_time) * 8.6 + (query.is_sitting ? 3.0 : (v.historical_frame_2.pos_y - v.historical_frame_6.pos_y)) * variable.rotationScale * 5.0;","variable.neck_4_rotation_y_raw = Math.mod((v.historical_frame_2.rot_y - v.historical_frame_6.rot_y + 180.0), 360.0);","variable.neck_4_rotation_y = (variable.neck_4_rotation_y_raw < 0.0 ? (variable.neck_4_rotation_y_raw + 180.0) : (variable.neck_4_rotation_y_raw - 180.0)) * variable.rotationScale;","variable.neck_4_rotation_z_raw = Math.mod((v.historical_frame_2.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.neck_4_rotation_z = -(variable.neck_4_rotation_z_raw < 0.0 ? (variable.neck_4_rotation_z_raw + 180.0) : (variable.neck_4_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.neck_4_position_x = variable.neck_3_position_x - Math.sin(variable.neck_3_rotation_y) * Math.cos(variable.neck_3_rotation_x) * variable.neck_distance;","variable.neck_4_position_y = variable.neck_3_position_y - Math.sin(variable.neck_3_rotation_x) * variable.neck_distance;","variable.neck_4_position_z = variable.neck_3_position_z - Math.cos(variable.neck_3_rotation_y) * Math.cos(variable.neck_3_rotation_x) * variable.neck_distance;","variable.neck_5_rotation_x = Math.cos(103.14 + variable.flap_time) * 8.6 + (query.is_sitting ? 4.0 : (v.historical_frame_1.pos_y - v.historical_frame_6.pos_y)) * variable.rotationScale * 5.0;","variable.neck_5_rotation_y_raw = Math.mod((v.historical_frame_1.rot_y - v.historical_frame_6.rot_y) + 180.0, 360.0);","variable.neck_5_rotation_y = (variable.neck_5_rotation_y_raw < 0.0 ? (variable.neck_5_rotation_y_raw + 180.0) : (variable.neck_5_rotation_y_raw - 180.0)) * variable.rotationScale;","variable.neck_5_rotation_z_raw = Math.mod((v.historical_frame_1.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.neck_5_rotation_z = -(variable.neck_5_rotation_z_raw < 0.0 ? (variable.neck_5_rotation_z_raw + 180.0) : (variable.neck_5_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.neck_5_position_x = variable.neck_4_position_x - Math.sin(variable.neck_4_rotation_y) * Math.cos(variable.neck_4_rotation_x) * variable.neck_distance;","variable.neck_5_position_y = variable.neck_4_position_y - Math.sin(variable.neck_4_rotation_x) * variable.neck_distance;","variable.neck_5_position_z = variable.neck_4_position_z - Math.cos(variable.neck_4_rotation_y) * Math.cos(variable.neck_4_rotation_x) * variable.neck_distance;","variable.head_rotation_x_raw = Math.mod((query.is_sitting ? 6.0 : 0.0) + 180.0, 360.0);","variable.head_rotation_x = (variable.head_rotation_x_raw < 0.0 ? (variable.head_rotation_x_raw + 180.0) : (variable.head_rotation_x_raw - 180.0)) * variable.rotationScale * 5.0;","variable.head_rotation_y_raw = Math.mod((v.historical_frame_0.rot_y - v.historical_frame_6.rot_y) + 180.0, 360.0);","variable.head_rotation_y = (variable.head_rotation_y_raw < 0.0 ? (variable.head_rotation_y_raw + 180.0) : (variable.head_rotation_y_raw - 180.0));","variable.head_rotation_z_raw = Math.mod((v.historical_frame_0.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.head_rotation_z = -(variable.head_rotation_z_raw < 0.0 ? (variable.head_rotation_z_raw + 180.0) : (variable.head_rotation_z_raw - 180.0));","variable.head_position_x = variable.neck_5_position_x - Math.sin(variable.neck_5_rotation_y) * Math.cos(variable.neck_5_rotation_x) * variable.neck_distance;","variable.head_position_y = variable.neck_5_position_y - Math.sin(variable.neck_5_rotation_x) * variable.neck_distance;","variable.head_position_z = variable.neck_5_position_z - Math.cos(variable.neck_5_rotation_y) * Math.cos(variable.neck_5_rotation_x) * variable.neck_distance;","variable.tail_distance = 10.0;","variable.tail_rotation_y = 180.0;","variable.tail_rotation_x = Math.sin(variable.flap_time) * 2.86;","variable.tail_1_rotation_x = variable.tail_rotation_x + (v.historical_frame_12.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_1_rotation_y_raw = Math.mod((v.historical_frame_12.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_1_rotation_y = (variable.tail_1_rotation_y_raw < 0.0 ? (variable.tail_1_rotation_y_raw + 180.0) : (variable.tail_1_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_1_rotation_z_raw = Math.mod((v.historical_frame_12.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_1_rotation_z = -(variable.tail_1_rotation_z_raw < 0.0 ? (variable.tail_1_rotation_z_raw + 180.0) : (variable.tail_1_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_1_position_x = 0.0;","variable.tail_1_position_y = -10.0;","variable.tail_1_position_z = 60.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(25.78 + variable.flap_time) * 2.86;","variable.tail_2_rotation_x = variable.tail_rotation_x + (v.historical_frame_13.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_2_rotation_y_raw = Math.mod((v.historical_frame_13.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_2_rotation_y = (variable.tail_2_rotation_y_raw < 0.0 ? (variable.tail_2_rotation_y_raw + 180.0) : (variable.tail_2_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_2_rotation_z_raw = Math.mod((v.historical_frame_13.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_2_rotation_z = -(variable.tail_2_rotation_z_raw < 0.0 ? (variable.tail_2_rotation_z_raw + 180.0) : (variable.tail_2_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_2_position_x = variable.tail_1_position_x - Math.sin(variable.tail_1_rotation_y) * Math.cos(variable.tail_1_rotation_x) * 10.0;","variable.tail_2_position_y = variable.tail_1_position_y - Math.sin(variable.tail_1_rotation_x) * variable.tail_distance;","variable.tail_2_position_z = variable.tail_1_position_z - Math.cos(variable.tail_1_rotation_y) * Math.cos(variable.tail_1_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(51.56 + variable.flap_time) * 2.86;","variable.tail_3_rotation_x = variable.tail_rotation_x + (v.historical_frame_14.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_3_rotation_y_raw = Math.mod((v.historical_frame_14.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_3_rotation_y = (variable.tail_3_rotation_y_raw < 0.0 ? (variable.tail_3_rotation_y_raw + 180.0) : (variable.tail_3_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_3_rotation_z_raw = Math.mod((v.historical_frame_14.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_3_rotation_z = -(variable.tail_3_rotation_z_raw < 0.0 ? (variable.tail_3_rotation_z_raw + 180.0) : (variable.tail_3_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_3_position_x = variable.tail_2_position_x - Math.sin(variable.tail_2_rotation_y) * Math.cos(variable.tail_2_rotation_x) * 10.0;","variable.tail_3_position_y = variable.tail_2_position_y - Math.sin(variable.tail_2_rotation_x) * variable.tail_distance;","variable.tail_3_position_z = variable.tail_2_position_z - Math.cos(variable.tail_2_rotation_y) * Math.cos(variable.tail_2_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(77.35 + variable.flap_time) * 2.86;","variable.tail_4_rotation_x = variable.tail_rotation_x + (v.historical_frame_15.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_4_rotation_y_raw = Math.mod((v.historical_frame_15.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_4_rotation_y = (variable.tail_4_rotation_y_raw < 0.0 ? (variable.tail_4_rotation_y_raw + 180.0) : (variable.tail_4_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_4_rotation_z_raw = Math.mod((v.historical_frame_15.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_4_rotation_z = -(variable.tail_4_rotation_z_raw < 0.0 ? (variable.tail_4_rotation_z_raw + 180.0) : (variable.tail_4_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_4_position_x = variable.tail_3_position_x - Math.sin(variable.tail_3_rotation_y) * Math.cos(variable.tail_3_rotation_x) * 10.0;","variable.tail_4_position_y = variable.tail_3_position_y - Math.sin(variable.tail_3_rotation_x) * variable.tail_distance;","variable.tail_4_position_z = variable.tail_3_position_z - Math.cos(variable.tail_3_rotation_y) * Math.cos(variable.tail_3_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(103.13 + variable.flap_time) * 2.86;","variable.tail_5_rotation_x = variable.tail_rotation_x + (v.historical_frame_16.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_5_rotation_y_raw = Math.mod((v.historical_frame_16.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_5_rotation_y = (variable.tail_5_rotation_y_raw < 0.0 ? (variable.tail_5_rotation_y_raw + 180.0) : (variable.tail_5_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_5_rotation_z_raw = Math.mod((v.historical_frame_16.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_5_rotation_z = -(variable.tail_5_rotation_z_raw < 0.0 ? (variable.tail_5_rotation_z_raw + 180.0) : (variable.tail_5_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_5_position_x = variable.tail_4_position_x - Math.sin(variable.tail_4_rotation_y) * Math.cos(variable.tail_4_rotation_x) * 10.0;","variable.tail_5_position_y = variable.tail_4_position_y - Math.sin(variable.tail_4_rotation_x) * variable.tail_distance;","variable.tail_5_position_z = variable.tail_4_position_z - Math.cos(variable.tail_4_rotation_y) * Math.cos(variable.tail_4_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(128.92 + variable.flap_time) * 2.86;","variable.tail_6_rotation_x = variable.tail_rotation_x + (v.historical_frame_17.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_6_rotation_y_raw = Math.mod((v.historical_frame_17.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_6_rotation_y = (variable.tail_6_rotation_y_raw < 0.0 ? (variable.tail_6_rotation_y_raw + 180.0) : (variable.tail_6_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_6_rotation_z_raw = Math.mod((v.historical_frame_17.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_6_rotation_z = -(variable.tail_6_rotation_z_raw < 0.0 ? (variable.tail_6_rotation_z_raw + 180.0) : (variable.tail_6_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_6_position_x = variable.tail_5_position_x - Math.sin(variable.tail_5_rotation_y) * Math.cos(variable.tail_5_rotation_x) * 10.0;","variable.tail_6_position_y = variable.tail_5_position_y - Math.sin(variable.tail_5_rotation_x) * variable.tail_distance;","variable.tail_6_position_z = variable.tail_5_position_z - Math.cos(variable.tail_5_rotation_y) * Math.cos(variable.tail_5_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(154.70 + variable.flap_time) * 2.86;","variable.tail_7_rotation_x = variable.tail_rotation_x + (v.historical_frame_18.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_7_rotation_y_raw = Math.mod((v.historical_frame_18.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_7_rotation_y = (variable.tail_7_rotation_y_raw < 0.0 ? (variable.tail_7_rotation_y_raw + 180.0) : (variable.tail_7_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_7_rotation_z_raw = Math.mod((v.historical_frame_18.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_7_rotation_z = -(variable.tail_7_rotation_z_raw < 0.0 ? (variable.tail_7_rotation_z_raw + 180.0) : (variable.tail_7_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_7_position_x = variable.tail_6_position_x - Math.sin(variable.tail_6_rotation_y) * Math.cos(variable.tail_6_rotation_x) * 10.0;","variable.tail_7_position_y = variable.tail_6_position_y - Math.sin(variable.tail_6_rotation_x) * variable.tail_distance;","variable.tail_7_position_z = variable.tail_6_position_z - Math.cos(variable.tail_6_rotation_y) * Math.cos(variable.tail_6_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(180.48 + variable.flap_time) * 2.86;","variable.tail_8_rotation_x = variable.tail_rotation_x + (v.historical_frame_19.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_8_rotation_y_raw = Math.mod((v.historical_frame_19.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_8_rotation_y = (variable.tail_8_rotation_y_raw < 0.0 ? (variable.tail_8_rotation_y_raw + 180.0) : (variable.tail_8_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_8_rotation_z_raw = Math.mod((v.historical_frame_19.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_8_rotation_z = -(variable.tail_8_rotation_z_raw < 0.0 ? (variable.tail_8_rotation_z_raw + 180.0) : (variable.tail_8_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_8_position_x = variable.tail_7_position_x - Math.sin(variable.tail_7_rotation_y) * Math.cos(variable.tail_7_rotation_x) * 10.0;","variable.tail_8_position_y = variable.tail_7_position_y - Math.sin(variable.tail_7_rotation_x) * variable.tail_distance;","variable.tail_8_position_z = variable.tail_7_position_z - Math.cos(variable.tail_7_rotation_y) * Math.cos(variable.tail_7_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(206.26 + variable.flap_time) * 2.86;","variable.tail_9_rotation_x = variable.tail_rotation_x + (v.historical_frame_20.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_9_rotation_y_raw = Math.mod((v.historical_frame_20.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_9_rotation_y = (variable.tail_9_rotation_y_raw < 0.0 ? (variable.tail_9_rotation_y_raw + 180.0) : (variable.tail_9_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_9_rotation_z_raw = Math.mod((v.historical_frame_20.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_9_rotation_z = -(variable.tail_9_rotation_z_raw < 0.0 ? (variable.tail_9_rotation_z_raw + 180.0) : (variable.tail_9_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_9_position_x = variable.tail_8_position_x - Math.sin(variable.tail_8_rotation_y) * Math.cos(variable.tail_8_rotation_x) * 10.0;","variable.tail_9_position_y = variable.tail_8_position_y - Math.sin(variable.tail_8_rotation_x) * variable.tail_distance;","variable.tail_9_position_z = variable.tail_8_position_z - Math.cos(variable.tail_8_rotation_y) * Math.cos(variable.tail_8_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(232.05 + variable.flap_time) * 2.86;","variable.tail_10_rotation_x = variable.tail_rotation_x + (v.historical_frame_21.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_10_rotation_y_raw = Math.mod((v.historical_frame_21.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_10_rotation_y = (variable.tail_10_rotation_y_raw < 0.0 ? (variable.tail_10_rotation_y_raw + 180.0) : (variable.tail_10_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_10_rotation_z_raw = Math.mod((v.historical_frame_21.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_10_rotation_z = -(variable.tail_10_rotation_z_raw < 0.0 ? (variable.tail_10_rotation_z_raw + 180.0) : (variable.tail_10_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_10_position_x = variable.tail_9_position_x - Math.sin(variable.tail_9_rotation_y) * Math.cos(variable.tail_9_rotation_x) * 10.0;","variable.tail_10_position_y = variable.tail_9_position_y - Math.sin(variable.tail_9_rotation_x) * variable.tail_distance;","variable.tail_10_position_z = variable.tail_9_position_z - Math.cos(variable.tail_9_rotation_y) * Math.cos(variable.tail_9_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(257.83 + variable.flap_time) * 2.86;","variable.tail_11_rotation_x = variable.tail_rotation_x + (v.historical_frame_22.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_11_rotation_y_raw = Math.mod((v.historical_frame_22.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_11_rotation_y = (variable.tail_11_rotation_y_raw < 0.0 ? (variable.tail_11_rotation_y_raw + 180.0) : (variable.tail_11_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_11_rotation_z_raw = Math.mod((v.historical_frame_22.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_11_rotation_z = -(variable.tail_11_rotation_z_raw < 0.0 ? (variable.tail_11_rotation_z_raw + 180.0) : (variable.tail_11_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_11_position_x = variable.tail_10_position_x - Math.sin(variable.tail_10_rotation_y) * Math.cos(variable.tail_10_rotation_x) * 10.0;","variable.tail_11_position_y = variable.tail_10_position_y - Math.sin(variable.tail_10_rotation_x) * variable.tail_distance;","variable.tail_11_position_z = variable.tail_10_position_z - Math.cos(variable.tail_10_rotation_y) * Math.cos(variable.tail_10_rotation_x) * 10.0;","variable.tail_rotation_x = variable.tail_rotation_x + Math.sin(283.61 + variable.flap_time) * 2.86;","variable.tail_12_rotation_x = variable.tail_rotation_x + (v.historical_frame_23.pos_y - v.historical_frame_11.pos_y) * variable.rotationScale * 5.0;","variable.tail_12_rotation_y_raw = Math.mod((v.historical_frame_23.rot_y - v.historical_frame_11.rot_y) + 180.0, 360.0);","variable.tail_12_rotation_y = (variable.tail_12_rotation_y_raw < 0.0 ? (variable.tail_12_rotation_y_raw + 180.0) : (variable.tail_12_rotation_y_raw - 180.0)) * variable.rotationScale + variable.tail_rotation_y;","variable.tail_12_rotation_z_raw = Math.mod((v.historical_frame_23.rot_y - variable.piece_rotation) + 180.0, 360.0);","variable.tail_12_rotation_z = -(variable.tail_12_rotation_z_raw < 0.0 ? (variable.tail_12_rotation_z_raw + 180.0) : (variable.tail_12_rotation_z_raw - 180.0)) * variable.rotationScale;","variable.tail_12_position_x = variable.tail_11_position_x - Math.sin(variable.tail_11_rotation_y) * Math.cos(variable.tail_11_rotation_x) * 10.0;","variable.tail_12_position_y = variable.tail_11_position_y - Math.sin(variable.tail_11_rotation_x) * variable.tail_distance;","variable.tail_12_position_z = variable.tail_11_position_z - Math.cos(variable.tail_11_rotation_y) * Math.cos(variable.tail_11_rotation_x) * 10.0;"],"animate":["setup","jaw_movement","neck_head_movement","wings_limbs_movement","tail_movement"]},"animations":{"setup":"animation.ender_dragon.setup","jaw_movement":"animation.ender_dragon.jaw_movement","neck_head_movement":"animation.ender_dragon.neck_head_movement","wings_limbs_movement":"animation.ender_dragon.wings_limbs_movement","tail_movement":"animation.ender_dragon.tail_movement"},"render_controllers":[{"controller.render.ender_dragon_death_pre_pass":"query.death_ticks > 1.0"},{"controller.render.ender_dragon_death_main_pass":"query.death_ticks > 1.0"},{"controller.render.ender_dragon_default":"query.death_ticks <= 1.0"}]}}},"minecraft:ender_eye":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:eye_of_ender_signal","materials":{"default":"eye_of_ender_signal"},"textures":{"default":"textures/items/ender_eye"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.item_sprite"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:ender_pearl":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ender_pearl","materials":{"default":"ender_pearl"},"textures":{"default":"textures/items/ender_pearl"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.item_sprite"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:evocation_fang":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:evocation_fang","materials":{"default":"fang"},"textures":{"default":"textures/entity/illager/fangs"},"geometry":{"default":"geometry.evocation_fang"},"scripts":{"pre_animation":["variable.remaining_life = (query.life_span - 2.0) - (query.life_time*20.0);","variable.animation_progress = query.life_span == 0.0 ? 0.0 : (variable.remaining_life < 1.0 ? 1.0 : 1.0 - Math.min(1.0, variable.remaining_life / 20.0));","variable.bite_amount = (1 - Math.Pow(Math.Clamp(variable.animation_progress*2.0, 0, 1.0), 3.0)) * 0.35 * 180;","variable.y_offset = (variable.animation_progress + Math.sin(variable.animation_progress*2.7*80.0)) * 0.6 * 12.0;"],"animate":["bite"],"scale":"variable.animation_progress > 0.9 ? (1.0 - variable.animation_progress) / 0.1 : 1.0"},"animations":{"bite":"animation.evocation_fang.bite"},"render_controllers":["controller.render.evocation_fang"]}}},"minecraft:evocation_illager":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:evocation_illager","min_engine_version":"1.8.0","materials":{"default":"evoker"},"textures":{"default":"textures/entity/illager/evoker"},"geometry":{"default":"geometry.evoker.v1.8"},"scripts":{"scale":"0.9375","animate":["controller_general","controller_move"]},"animations":{"general":"animation.evoker.general","casting":"animation.evoker.casting","look_at_target":"animation.common.look_at_target","move":"animation.villager.move","celebrating":"animation.humanoid.celebrating","controller_general":"controller.animation.evoker.general","controller_move":"controller.animation.villager.move"},"particle_effects":{"spell":"minecraft:evoker_spell"},"render_controllers":["controller.render.evoker"],"spawn_egg":{"texture":"spawn_egg","texture_index":40}}}},"minecraft:evocation_illager.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:evocation_illager","materials":{"default":"evoker"},"textures":{"default":"textures/entity/illager/evoker"},"geometry":{"default":"geometry.evoker"},"scripts":{"scale":"0.9375"},"animations":{"general":"animation.evoker.general.v1.0","casting":"animation.evoker.casting.v1.0","look_at_target":"animation.humanoid.look_at_target.default.v1.0","move":"animation.villager.move"},"animation_controllers":[{"general":"controller.animation.evoker.general.v1.0"},{"move":"controller.animation.villager.move"}],"particle_effects":{"spell":"minecraft:evoker_spell"},"render_controllers":["controller.render.evoker"],"spawn_egg":{"texture":"spawn_egg","texture_index":40}}}},"minecraft:experience_bottle":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:xp_bottle","materials":{"default":"xp_bottle"},"textures":{"default":"textures/items/experience_bottle","enchanted":"textures/misc/enchanted_item_glint"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.experience_bottle"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:experience_orb":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:xp_orb","materials":{"default":"experience_orb"},"textures":{"default":"textures/entity/experience_orb"},"geometry":{"default":"geometry.experience_orb"},"animations":{"face_player":"animation.actor.billboard"},"scripts":{"scale":"0.3","pre_animation":["variable.u = Math.mod(query.texture_frame_index, 4) * 16.0 / 64.0;","variable.v = math.round(query.texture_frame_index / 4) * 16.0 / 64.0;"],"animate":["face_player"]},"render_controllers":["controller.render.experience_orb"]}}},"minecraft:fireball":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:fireball","materials":{"default":"fireball"},"textures":{"default":"textures/items/fireball"},"geometry":{"default":"geometry.fireball"},"animations":{"face_player":"animation.actor.billboard"},"scripts":{"scale":"2.0","animate":["face_player"]},"render_controllers":["controller.render.fireball"]}}},"minecraft:fireworks_rocket":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:fireworks_rocket","materials":{"default":"fireworks_rocket"},"textures":{"default":"textures/entity/fireworks"},"geometry":{"default":"geometry.fireworks_rocket"},"animations":{"move":"animation.fireworks_rocket.move"},"scripts":{"animate":["move"]},"render_controllers":["controller.render.fireworks_rocket"]}}},"minecraft:fishing_hook":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:fishing_hook","materials":{"default":"fishing_hook"},"textures":{"default":"textures/entity/fishhook"},"geometry":{"default":"geometry.fishing_hook"},"render_controllers":["controller.render.fishing_hook"]}}},"minecraft:fox":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:fox","materials":{"default":"fox"},"textures":{"red":"textures/entity/fox/fox","arctic":"textures/entity/fox/arctic_fox"},"geometry":{"default":"geometry.fox"},"animations":{"walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.fox.baby_transform","crouch":"animation.fox.crouch","sleep":"animation.fox.sleep","setup":"animation.fox.setup","sit":"animation.fox.sit","wiggle":"animation.fox.wiggle","stuck":"animation.fox.stuck","pounce":"animation.fox.pounce","move":"controller.animation.fox.move"},"scripts":{"animate":["setup",{"baby_transform":"query.is_baby"},"move"]},"render_controllers":["controller.render.fox"],"spawn_egg":{"texture":"spawn_egg","texture_index":55}}}},"minecraft:frog":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:frog","materials":{"default":"frog"},"textures":{"temperate":"textures/entity/frog/temperate_frog","cold":"textures/entity/frog/cold_frog","warm":"textures/entity/frog/warm_frog"},"geometry":{"default":"geometry.frog"},"spawn_egg":{"base_color":"#d07444","overlay_color":"#ffc77c"},"scripts":{"pre_animation":["variable.moving = query.ground_speed > 0 || query.vertical_speed > 0;"]},"animations":{"croak":"animation.frog.croak","jump":"animation.frog.jump","tongue":"animation.frog.tongue","walk":"animation.frog.walk","swim":"animation.frog.swim","idle_water":"animation.frog.idle.water","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"general":"controller.animation.frog.general"},{"croaking":"controller.animation.frog.croaking"},{"eat_mob":"controller.animation.frog.eat_mob"}],"render_controllers":["controller.render.frog"]}}},"minecraft:ghast":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ghast","materials":{"default":"ghast"},"textures":{"default":"textures/entity/ghast/ghast","shooting":"textures/entity/ghast/ghast_shooting"},"geometry":{"default":"geometry.ghast"},"spawn_egg":{"texture":"spawn_egg","texture_index":19},"animations":{"move":"animation.ghast.move","scale":"animation.ghast.scale"},"animation_controllers":[{"move":"controller.animation.ghast.move"},{"scale":"controller.animation.ghast.scale"}],"render_controllers":["controller.render.ghast"]}}},"minecraft:glow_squid":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:glow_squid","materials":{"default":"glow_squid"},"textures":{"default":"textures/entity/glow_squid/glow_squid"},"geometry":{"default":"geometry.squid"},"animations":{"move":"animation.squid.move","squid_rotate":"animation.squid.rotate"},"scripts":{"animate":["move","squid_rotate"]},"render_controllers":["controller.render.glow_squid"],"spawn_egg":{"base_color":"#0x095656","overlay_color":"#0x85f1bc"}}}},"minecraft:goat":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:goat","materials":{"default":"goat"},"textures":{"default":"textures/entity/goat/goat"},"geometry":{"default":"geometry.goat"},"spawn_egg":{"base_color":"#c0ac90","overlay_color":"#857261"},"scripts":{"pre_animation":["variable.tcos_right_side = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.tcos_left_side = -variable.tcos_right_side;","variable.attack_head_rot = Math.sin(variable.attack_time * 180.0) * -37.3;","variable.ram_head_rot = Math.sin(variable.should_bow_head * 90.0) * 37.3;"],"animate":["walk","look_at_target",{"attack":"variable.has_target && variable.attack_time >= 0.0"},"ram_attack"]},"animations":{"walk":"animation.goat.walk","look_at_target":"animation.goat.look_at_target","attack":"animation.goat.attack","ram_attack":"animation.goat.ram_attack"},"render_controllers":["controller.render.goat"]}}},"minecraft:guardian":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:guardian","min_engine_version":"1.8.0","materials":{"default":"guardian","ghost":"guardian_ghost"},"textures":{"default":"textures/entity/guardian","elder":"textures/entity/guardian_elder","beam":"textures/entity/guardian_beam"},"geometry":{"default":"geometry.guardian.v1.8","ghost":"geometry.guardian"},"animations":{"setup":"animation.guardian.setup","spikes":"animation.guardian.spikes","swim":"animation.guardian.swim","look_at_target":"animation.common.look_at_target","move_eye":"animation.guardian.move_eye"},"scripts":{"initialize":["variable.spike_animation_speed = 0.0;","variable.tail_animation_speed = 0.0;","variable.tail_swim = 0.0;"],"pre_animation":["variable.spike_shake = Math.sin(query.life_time * 2000)/50;","variable.spike_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? (Math.round(Math.sin(query.life_time * 2000)) == 0.0 ? (Math.random(0.0, 1.0)) : (variable.spike_animation_speed)) : (query.is_moving ? (variable.spike_animation_speed - variable.spike_animation_speed * 0.06) : (variable.spike_animation_speed + (1.0 - variable.spike_animation_speed) * 0.06)));","variable.spike_extension = (1.0 - variable.spike_animation_speed) * 0.55;","variable.tail_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? 2.0 : query.is_moving ? (variable.tail_animation_speed < 0.5 ? 4.0 : variable.tail_animation_speed + (0.5 - variable.tail_animation_speed) * 0.1) : variable.tail_animation_speed + (0.125 - variable.tail_animation_speed) * 0.2);","variable.tail_swim = query.life_time < 0.1 ? 0.0 : (variable.tail_swim + variable.tail_animation_speed);","variable.tail_base_angle = Math.sin(variable.tail_swim*20.0);"],"animate":["setup","spikes","swim","look_at_target","move_eye"]},"render_controllers":["controller.render.guardian"],"spawn_egg":{"texture":"spawn_egg","texture_index":26}}}},"minecraft:guardian.entity.v1.0.json":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:guardian","materials":{"default":"guardian","ghost":"guardian_ghost"},"textures":{"default":"textures/entity/guardian","elder":"textures/entity/guardian_elder","beam":"textures/entity/guardian_beam"},"geometry":{"default":"geometry.guardian","ghost":"geometry.guardian"},"animations":{"setup":"animation.guardian.setup","spikes":"animation.guardian.spikes.v1.0","swim":"animation.guardian.swim","look_at_target":"animation.common.look_at_target","move_eye":"animation.guardian.move_eye.v1.0"},"scripts":{"initialize":["variable.spike_animation_speed = 0.0;","variable.tail_animation_speed = 0.0;","variable.tail_swim = 0.0;"],"pre_animation":["variable.spike_shake = Math.sin(query.life_time * 2000)/50;","variable.spike_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? (Math.round(Math.sin(query.life_time * 2000)) == 0.0 ? (Math.random(0.0, 1.0)) : (variable.spike_animation_speed)) : (query.is_moving ? (variable.spike_animation_speed - variable.spike_animation_speed * 0.06) : (variable.spike_animation_speed + (1.0 - variable.spike_animation_speed) * 0.06)));","variable.spike_extension = (1.0 - variable.spike_animation_speed) * 0.55;","variable.tail_animation_speed = query.life_time < 0.1 ? 0.0 : (!query.is_in_water ? 2.0 : query.is_moving ? (variable.tail_animation_speed < 0.5 ? 4.0 : variable.tail_animation_speed + (0.5 - variable.tail_animation_speed) * 0.1) : variable.tail_animation_speed + (0.125 - variable.tail_animation_speed) * 0.2);","variable.tail_swim = query.life_time < 0.1 ? 0.0 : (variable.tail_swim + variable.tail_animation_speed);","variable.tail_base_angle = Math.sin(variable.tail_swim*20.0);"],"animate":["setup","spikes","swim","look_at_target","move_eye"]},"render_controllers":["controller.render.guardian"],"spawn_egg":{"texture":"spawn_egg","texture_index":26}}}},"minecraft:hoglin":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:hoglin","materials":{"default":"hoglin"},"textures":{"default":"textures/entity/hoglin/hoglin"},"geometry":{"default":"geometry.hoglin"},"spawn_egg":{"base_color":"#C66E55","overlay_color":"#5f6464"},"scripts":{"pre_animation":["variable.tcos_right_side = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.tcos_left_side = -variable.tcos_right_side;","variable.attack_head_rot = Math.sin(variable.attack_time * 180.0) * -37.3;"]},"animations":{"walk":"animation.hoglin.walk","look_at_target":"animation.hoglin.look_at_target","attack":"animation.hoglin.attack","hoglin_baby_scaling":"animation.hoglin.baby_scaling"},"animation_controllers":[{"look_at_target":"controller.animation.hoglin.look_at_target"},{"walk":"controller.animation.hoglin.walk"},{"attack":"controller.animation.hoglin.attack"},{"hoglin_baby_scaling":"controller.animation.hoglin.baby_scaling"}],"render_controllers":["controller.render.hoglin"]}}},"minecraft:hopper_minecart":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:hopper_minecart","min_engine_version":"1.8.0","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart.v1.8"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move"},"render_controllers":["controller.render.minecart"]}}},"minecraft:hopper_minecart.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:hopper_minecart","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move.v1.0"},"render_controllers":["controller.render.minecart"]}}},"minecraft:horse_v1":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:horse","materials":{"default":"horse_leather_armor"},"textures":{"base_brown":"textures/entity/horse/horse_brown","base_white":"textures/entity/horse/horse_white","base_creamy":"textures/entity/horse/horse_creamy","base_chestnut":"textures/entity/horse/horse_chestnut","base_black":"textures/entity/horse/horse_black","base_gray":"textures/entity/horse/horse_gray","base_darkbrown":"textures/entity/horse/horse_darkbrown","markings_none":"textures/entity/horse/horse_markings_none","markings_white":"textures/entity/horse/horse_markings_white","markings_whitefield":"textures/entity/horse/horse_markings_whitefield","markings_whitedots":"textures/entity/horse/horse_markings_whitedots","markings_blackdots":"textures/entity/horse/horse_markings_blackdots","armor_none":"textures/entity/horse/armor/horse_armor_none","armor_leather":"textures/entity/horse/armor/horse_armor_leather","armor_iron":"textures/entity/horse/armor/horse_armor_iron","armor_gold":"textures/entity/horse/armor/horse_armor_gold","armor_diamond":"textures/entity/horse/armor/horse_armor_diamond"},"geometry":{"default":"geometry.horse"},"animations":{"setup":"animation.horse.setup","baby_transform":"animation.horse.baby_transform","walk":"animation.horse.walk","eat":"animation.horse.eat","stand":"animation.horse.stand","shake_tail":"animation.horse.shake_tail","mouth":"animation.horse.mouth","look_at_player":"animation.horse.look_at_player"},"scripts":{"initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;","variable.leg_back_origin = query.bone_origin('leg1a');","variable.leg_front_origin = query.bone_origin('leg3a');","variable.head_rotation = query.bone_rotation('head');"],"pre_animation":["variable.armor_texture_slot = query.armor_texture_slot(1);","variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.walk_tail_angle = math.clamp(query.modified_move_speed * 50.0, 0.0, 90.0) * (1.0 - variable.stand_anim);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_walk_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_walk_factor * 45.8 * query.modified_move_speed;","variable.leg_stand = math.cos((query.life_time * 20.0) * 34.38) * variable.stand_anim;","variable.baby_ratio = query.is_baby ? ((0.0625 - query.model_scale) * 16.0) : 0.0;"],"animate":["setup",{"baby_transform":"query.is_baby"},{"walk":"variable.stand_anim < 0.5"},{"stand":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"shake_tail":"variable.shake_tail"},"mouth","look_at_player"]},"render_controllers":["controller.render.horse.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":23}}}},"minecraft:horse_v2":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:horse","min_engine_version":"1.2.6","materials":{"default":"horse_leather_armor"},"textures":{"base_brown":"textures/entity/horse2/horse_brown","base_white":"textures/entity/horse2/horse_white","base_creamy":"textures/entity/horse2/horse_creamy","base_chestnut":"textures/entity/horse2/horse_chestnut","base_black":"textures/entity/horse2/horse_black","base_gray":"textures/entity/horse2/horse_gray","base_darkbrown":"textures/entity/horse2/horse_darkbrown","markings_none":"textures/entity/horse2/horse_markings_none","markings_white":"textures/entity/horse2/horse_markings_white","markings_whitefield":"textures/entity/horse2/horse_markings_whitefield","markings_whitedots":"textures/entity/horse2/horse_markings_whitedots","markings_blackdots":"textures/entity/horse2/horse_markings_blackdots","armor_none":"textures/entity/horse2/armor/horse_armor_none","armor_leather":"textures/entity/horse2/armor/horse_armor_leather","armor_iron":"textures/entity/horse2/armor/horse_armor_iron","armor_gold":"textures/entity/horse2/armor/horse_armor_gold","armor_diamond":"textures/entity/horse2/armor/horse_armor_diamond"},"geometry":{"default":"geometry.horse.v2"},"animations":{"setup":"animation.horse.v2.setup","baby_transform":"animation.horse.v2.baby_transform","walk":"animation.horse.v2.walk","eat":"animation.horse.v2.eat","stand":"animation.horse.v2.stand","tail":"animation.horse.v2.tail"},"scripts":{"initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;"],"pre_animation":["variable.armor_texture_slot = query.armor_texture_slot(1);","variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;","variable.leg1a_aabb = query.bone_aabb('leg1a');","variable.y_adjust = query.is_baby ? 0.0 : (variable.leg1a_aabb.max.y - variable.leg1a_aabb.min.y) * (1.0 - (query.model_scale * 16.0));"],"animate":["setup",{"baby_transform":"query.is_baby"},"walk","stand",{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.horse.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":23}}}},"minecraft:horse_v3":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:horse","min_engine_version":"1.17.10","materials":{"default":"horse_leather_armor"},"textures":{"base_brown":"textures/entity/horse2/horse_brown","base_white":"textures/entity/horse2/horse_white","base_creamy":"textures/entity/horse2/horse_creamy","base_chestnut":"textures/entity/horse2/horse_chestnut","base_black":"textures/entity/horse2/horse_black","base_gray":"textures/entity/horse2/horse_gray","base_darkbrown":"textures/entity/horse2/horse_darkbrown","markings_none":"textures/entity/horse2/horse_markings_none","markings_white":"textures/entity/horse2/horse_markings_white","markings_whitefield":"textures/entity/horse2/horse_markings_whitefield","markings_whitedots":"textures/entity/horse2/horse_markings_whitedots","markings_blackdots":"textures/entity/horse2/horse_markings_blackdots","armor_none":"textures/entity/horse2/armor/horse_armor_none","armor_leather":"textures/entity/horse2/armor/horse_armor_leather","armor_iron":"textures/entity/horse2/armor/horse_armor_iron","armor_gold":"textures/entity/horse2/armor/horse_armor_gold","armor_diamond":"textures/entity/horse2/armor/horse_armor_diamond"},"geometry":{"default":"geometry.horse.v3"},"animations":{"baby_transform":"animation.horse.v3.baby_transform","walk":"animation.horse.v3.walk","eat":"animation.horse.v3.eat","rear":"animation.horse.v3.rear","tail":"animation.horse.v3.tail","look_at_player":"animation.horse.v3.look_at_player"},"scripts":{"initialize":["variable.eat_anim = 0.0;"],"pre_animation":["variable.armor_texture_slot = query.armor_texture_slot(1);","variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;"],"animate":[{"baby_transform":"query.is_baby"},"walk","look_at_player",{"rear":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.horse.v3"],"spawn_egg":{"texture":"spawn_egg","texture_index":23}}}},"minecraft:husk":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:husk","min_engine_version":"1.8.0","materials":{"default":"husk"},"textures":{"default":"textures/entity/zombie/husk"},"geometry":{"default":"geometry.zombie.husk.v1.8"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","use_item_progress":"animation.humanoid.use_item_progress","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","swimming":"animation.zombie.swimming"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"},{"swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.husk"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":28}}}},"minecraft:husk.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:husk","materials":{"default":"husk"},"textures":{"default":"textures/entity/zombie/husk"},"geometry":{"default":"geometry.zombie.husk"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","zombie_swimming":"animation.zombie.swimming"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"},{"zombie_swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.husk"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":28}}}},"minecraft:iron_golem":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:iron_golem","textures":{"cracked_high":"textures/entity/iron_golem/cracked_high","cracked_med":"textures/entity/iron_golem/cracked_medium","cracked_low":"textures/entity/iron_golem/cracked_low","cracked_none":"textures/entity/iron_golem/cracked_none"},"render_controllers":["controller.render.iron_golem","controller.render.iron_golem_cracks"]}}},"minecraft:leash_knot":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:leash_knot","materials":{"default":"leash_knot"},"textures":{"default":"textures/entity/lead_knot"},"geometry":{"default":"geometry.leash_knot"},"render_controllers":["controller.render.leash_knot"]}}},"minecraft:lingering_potion":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:lingering_potion","materials":{"default":"lingering_potion_enchanted"},"textures":{"moveSlowdown":"textures/items/potion_bottle_lingering_moveSlowdown","moveSpeed":"textures/items/potion_bottle_lingering_moveSpeed","digSlowdown":"textures/items/potion_bottle_lingering_digSlowdown","digSpeed":"textures/items/potion_bottle_lingering_digSpeed","damageBoost":"textures/items/potion_bottle_lingering_damageBoost","heal":"textures/items/potion_bottle_lingering_heal","harm":"textures/items/potion_bottle_lingering_harm","jump":"textures/items/potion_bottle_lingering_jump","confusion":"textures/items/potion_bottle_lingering_confusion","regeneration":"textures/items/potion_bottle_lingering_regeneration","resistance":"textures/items/potion_bottle_lingering_resistance","fireResistance":"textures/items/potion_bottle_lingering_fireResistance","waterBreathing":"textures/items/potion_bottle_lingering_waterBreathing","invisibility":"textures/items/potion_bottle_lingering_invisibility","blindness":"textures/items/potion_bottle_lingering_blindness","nightVision":"textures/items/potion_bottle_lingering_nightVision","hunger":"textures/items/potion_bottle_lingering_hunger","weakness":"textures/items/potion_bottle_lingering_weakness","poison":"textures/items/potion_bottle_lingering_poison","wither":"textures/items/potion_bottle_lingering_wither","healthBoost":"textures/items/potion_bottle_lingering_healthBoost","absorption":"textures/items/potion_bottle_lingering_absorption","saturation":"textures/items/potion_bottle_lingering_saturation","levitation":"textures/items/potion_bottle_lingering_levitation","turtleMaster":"textures/items/potion_bottle_lingering_turtleMaster","slowFall":"textures/items/potion_bottle_lingering_slowFall","default":"textures/items/potion_bottle_lingering","enchanted":"textures/misc/enchanted_item_glint"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.lingering_potion"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:llama":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:llama","min_engine_version":"1.8.0","materials":{"default":"llama"},"textures":{"creamy":"textures/entity/llama/llama_creamy","white":"textures/entity/llama/llama_white","brown":"textures/entity/llama/llama_brown","gray":"textures/entity/llama/llama_gray","decor_none":"textures/entity/llama/decor/decor_none","decor_white":"textures/entity/llama/decor/decor_white","decor_orange":"textures/entity/llama/decor/decor_orange","decor_magenta":"textures/entity/llama/decor/decor_magenta","decor_light_blue":"textures/entity/llama/decor/decor_light_blue","decor_yellow":"textures/entity/llama/decor/decor_yellow","decor_lime":"textures/entity/llama/decor/decor_lime","decor_pink":"textures/entity/llama/decor/decor_pink","decor_gray":"textures/entity/llama/decor/decor_gray","decor_silver":"textures/entity/llama/decor/decor_silver","decor_cyan":"textures/entity/llama/decor/decor_cyan","decor_purple":"textures/entity/llama/decor/decor_purple","decor_blue":"textures/entity/llama/decor/decor_blue","decor_brown":"textures/entity/llama/decor/decor_brown","decor_green":"textures/entity/llama/decor/decor_green","decor_red":"textures/entity/llama/decor/decor_red","decor_black":"textures/entity/llama/decor/decor_black","decor_wandering_trader":"textures/entity/llama/decor/trader_llama_decor"},"geometry":{"default":"geometry.llama.v1.8"},"animations":{"setup":"animation.llama.setup","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.llama.baby_transform"},"animation_controllers":[{"move":"controller.animation.llama.move"},{"baby":"controller.animation.llama.baby"}],"render_controllers":["controller.render.llama"],"spawn_egg":{"texture":"spawn_egg","texture_index":38}}}},"minecraft:llama.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:llama","materials":{"default":"llama"},"textures":{"creamy":"textures/entity/llama/llama_creamy","white":"textures/entity/llama/llama_white","brown":"textures/entity/llama/llama_brown","gray":"textures/entity/llama/llama_gray","decor_none":"textures/entity/llama/decor/decor_none","decor_white":"textures/entity/llama/decor/decor_white","decor_orange":"textures/entity/llama/decor/decor_orange","decor_magenta":"textures/entity/llama/decor/decor_magenta","decor_light_blue":"textures/entity/llama/decor/decor_light_blue","decor_yellow":"textures/entity/llama/decor/decor_yellow","decor_lime":"textures/entity/llama/decor/decor_lime","decor_pink":"textures/entity/llama/decor/decor_pink","decor_gray":"textures/entity/llama/decor/decor_gray","decor_silver":"textures/entity/llama/decor/decor_silver","decor_cyan":"textures/entity/llama/decor/decor_cyan","decor_purple":"textures/entity/llama/decor/decor_purple","decor_blue":"textures/entity/llama/decor/decor_blue","decor_brown":"textures/entity/llama/decor/decor_brown","decor_green":"textures/entity/llama/decor/decor_green","decor_red":"textures/entity/llama/decor/decor_red","decor_black":"textures/entity/llama/decor/decor_black","decor_wandering_trader":"textures/entity/llama/decor/trader_llama_decor"},"geometry":{"default":"geometry.llama"},"animations":{"setup":"animation.llama.setup.v1.0","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.llama.baby_transform.v1.0"},"animation_controllers":[{"move":"controller.animation.llama.move"},{"baby":"controller.animation.llama.baby"}],"render_controllers":["controller.render.llama"],"spawn_egg":{"texture":"spawn_egg","texture_index":38}}}},"minecraft:llama_spit":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:llama_spit","materials":{"default":"llama_spit"},"textures":{"default":"textures/entity/llama/spit"},"geometry":{"default":"geometry.llamaspit"},"animations":{"setup":"animation.llama_spit.setup"},"scripts":{"animate":["setup"]},"render_controllers":["controller.render.llama_spit"]}}},"minecraft:magma_cube":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:magma_cube","materials":{"default":"magma_cube"},"textures":{"default":"textures/entity/slime/magmacube"},"geometry":{"default":"geometry.lavaslime"},"scripts":{"pre_animation":["variable.slime_squish_factor = (query.previous_squish_value + (query.current_squish_value - query.previous_squish_value) * query.frame_alpha);","variable.bounce = 1 / ((variable.slime_squish_factor / (query.variant * 0.5 + 1)) + 1);","variable.horizontal_scale_amount = variable.bounce * query.variant;","variable.vertical_scale_amount = (1 / variable.bounce) * query.variant;"],"scaleX":"variable.horizontal_scale_amount","scaleY":"variable.vertical_scale_amount","scaleZ":"variable.horizontal_scale_amount"},"animations":{"move":"animation.magma_cube.move"},"animation_controllers":[{"general":"controller.animation.magma_cube.general"}],"render_controllers":["controller.render.magma_cube"],"spawn_egg":{"texture":"spawn_egg","texture_index":20}}}},"minecraft:minecart":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:minecart","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"],"should_update_bones_and_effects_offscreen":"1.0"},"animations":{"move":"animation.minecart.move.v1.0"},"render_controllers":["controller.render.minecart"]}}},"minecraft:minecart.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:minecart","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"],"should_update_bones_and_effects_offscreen":"1.0"},"animations":{"move":"animation.minecart.move.v1.0"},"render_controllers":["controller.render.minecart"]}}},"minecraft:mooshroom":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:mooshroom","min_engine_version":"1.8.0","materials":{"default":"mooshroom"},"textures":{"default":"textures/entity/cow/mooshroom","brown":"textures/entity/cow/brown_mooshroom"},"geometry":{"default":"geometry.mooshroom.v1.8"},"animations":{"setup":"animation.mooshroom.setup","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.mooshroom.baby_transform"},"animation_controllers":[{"setup":"controller.animation.mooshroom.setup"},{"move":"controller.animation.mooshroom.move"},{"baby":"controller.animation.mooshroom.baby"}],"render_controllers":["controller.render.mooshroom"],"spawn_egg":{"texture":"spawn_egg","texture_index":5}}}},"minecraft:mooshroom.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:mooshroom","materials":{"default":"mooshroom"},"textures":{"default":"textures/entity/cow/mooshroom","brown":"textures/entity/cow/brown_mooshroom"},"geometry":{"default":"geometry.mooshroom"},"animations":{"setup":"animation.mooshroom.setup.v1.0","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.mooshroom.baby_transform"},"animation_controllers":[{"setup":"controller.animation.mooshroom.setup"},{"move":"controller.animation.mooshroom.move"},{"baby":"controller.animation.mooshroom.baby"}],"render_controllers":["controller.render.mooshroom"],"spawn_egg":{"texture":"spawn_egg","texture_index":5}}}},"minecraft:mule_v1":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:mule","materials":{"default":"horse"},"textures":{"mule":"textures/entity/horse/mule","markings_none":"textures/entity/horse/horse_markings_none","armor_none":"textures/entity/horse/armor/horse_armor_none"},"geometry":{"default":"geometry.horse"},"animations":{"setup":"animation.horse.setup","baby_transform":"animation.horse.baby_transform","walk":"animation.horse.walk","eat":"animation.horse.eat","stand":"animation.horse.stand","shake_tail":"animation.horse.shake_tail","mouth":"animation.horse.mouth","look_at_player":"animation.horse.look_at_player"},"scripts":{"scale":"0.92","initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;","variable.leg_back_origin = query.bone_origin('leg1a');","variable.leg_front_origin = query.bone_origin('leg3a');","variable.head_rotation = query.bone_rotation('head');"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.walk_tail_angle = math.clamp(query.modified_move_speed * 50.0, 0.0, 90.0) * (1.0 - variable.stand_anim);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_walk_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_walk_factor * 45.8 * query.modified_move_speed;","variable.leg_stand = math.cos((query.life_time * 20.0) * 34.38) * variable.stand_anim;","variable.baby_ratio = query.is_baby ? ((0.0625 - query.model_scale) * 16.0) : 0.0;"],"animate":["setup",{"baby_transform":"query.is_baby"},{"walk":"variable.stand_anim < 0.5"},{"stand":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"shake_tail":"variable.shake_tail"},"mouth","look_at_player"]},"render_controllers":["controller.render.mule.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":31}}}},"minecraft:mule_v2":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:mule","min_engine_version":"1.2.6","materials":{"default":"horse"},"textures":{"mule":"textures/entity/horse2/mule","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v2"},"animations":{"setup":"animation.horse.v2.setup","baby_transform":"animation.horse.v2.baby_transform","walk":"animation.horse.v2.walk","eat":"animation.horse.v2.eat","stand":"animation.horse.v2.stand","tail":"animation.horse.v2.tail"},"scripts":{"scale":"0.92","initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;","variable.leg1a_aabb = query.bone_aabb('leg1a');","variable.y_adjust = query.is_baby ? 0.0 : (variable.leg1a_aabb.max.y - variable.leg1a_aabb.min.y) * (1.0 - (query.model_scale * 16.0));"],"animate":["setup",{"baby_transform":"query.is_baby"},"walk","stand",{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.mule.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":31}}}},"minecraft:mule_v3":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:mule","min_engine_version":"1.17.10","materials":{"default":"horse"},"textures":{"mule":"textures/entity/horse2/mule","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v3"},"animations":{"baby_transform":"animation.horse.v3.baby_transform","walk":"animation.horse.v3.walk","eat":"animation.horse.v3.eat","rear":"animation.horse.v3.rear","tail":"animation.horse.v3.tail","look_at_player":"animation.horse.v3.look_at_player"},"scripts":{"scale":"0.92","initialize":["variable.eat_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;"],"animate":[{"baby_transform":"query.is_baby"},"walk","look_at_player",{"rear":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.mule.v3"],"spawn_egg":{"texture":"spawn_egg","texture_index":31}}}},"minecraft:npc":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:npc","materials":{"default":"npc"},"textures":{"npc_1":"textures/entity/npc/npc_1","npc_2":"textures/entity/npc/npc_2","npc_3":"textures/entity/npc/npc_3","npc_4":"textures/entity/npc/npc_4","npc_5":"textures/entity/npc/npc_5","npc_6":"textures/entity/npc/npc_6","npc_7":"textures/entity/npc/npc_7","npc_8":"textures/entity/npc/npc_8","npc_9":"textures/entity/npc/npc_9","npc_10":"textures/entity/npc/npc_10","npc_scientist_1":"textures/entity/npc/npc_scientist_1","npc_scientist_2":"textures/entity/npc/npc_scientist_2","npc_scientist_3":"textures/entity/npc/npc_scientist_3","npc_scientist_4":"textures/entity/npc/npc_scientist_4","npc_scientist_5":"textures/entity/npc/npc_scientist_5","npc_scientist_6":"textures/entity/npc/npc_scientist_6","npc_scientist_7":"textures/entity/npc/npc_scientist_7","npc_scientist_8":"textures/entity/npc/npc_scientist_8","npc_scientist_9":"textures/entity/npc/npc_scientist_9","npc_scientist_10":"textures/entity/npc/npc_scientist_10","npc_apiary_1":"textures/entity/npc/npc_apiary_1","npc_apiary_2":"textures/entity/npc/npc_apiary_2","npc_apiary_3":"textures/entity/npc/npc_apiary_3","npc_apiary_4":"textures/entity/npc/npc_apiary_4","npc_apiary_5":"textures/entity/npc/npc_apiary_5","npc_teacher_1":"textures/entity/npc/npc_teacher_1","npc_teacher_2":"textures/entity/npc/npc_teacher_2","npc_teacher_3":"textures/entity/npc/npc_teacher_3","npc_teacher_4":"textures/entity/npc/npc_teacher_4","npc_teacher_5":"textures/entity/npc/npc_teacher_5","npc_construction_1":"textures/entity/npc/npc_construction_1","npc_construction_2":"textures/entity/npc/npc_construction_2","npc_construction_3":"textures/entity/npc/npc_construction_3","npc_construction_4":"textures/entity/npc/npc_construction_4","npc_construction_5":"textures/entity/npc/npc_construction_5"},"geometry":{"default":"geometry.npc"},"scripts":{"animate":["general",{"move":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"animations":{"general":"animation.npc.general","look_at_target":"animation.common.look_at_target","move":"animation.npc.move","baby_transform":"animation.npc.baby_transform"},"render_controllers":["controller.render.npc"],"spawn_egg":{"texture":"spawn_egg","texture_index":35}}}},"minecraft:ocelot":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ocelot","min_engine_version":"1.8.0","materials":{"default":"ocelot"},"textures":{"black":"textures/entity/cat/blackcat","red":"textures/entity/cat/red","siamese":"textures/entity/cat/siamese","wild":"textures/entity/cat/ocelot"},"geometry":{"default":"geometry.ocelot.v1.8"},"animations":{"sneak":"animation.ocelot.sneak","walk":"animation.ocelot.walk","sprint":"animation.ocelot.sprint","sit":"animation.ocelot.sit","look_at_target":"animation.common.look_at_target","baby_transform":"animation.ocelot.baby_transform"},"animation_controllers":[{"move":"controller.animation.ocelot.move"},{"baby":"controller.animation.ocelot.baby"},{"look_at_target":"controller.animation.ocelot.look_at_target"}],"render_controllers":["controller.render.ocelot"],"spawn_egg":{"texture":"spawn_egg","texture_index":16}}}},"minecraft:ocelot.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ocelot","materials":{"default":"ocelot"},"textures":{"black":"textures/entity/cat/blackcat","red":"textures/entity/cat/red","siamese":"textures/entity/cat/siamese","wild":"textures/entity/cat/ocelot"},"geometry":{"default":"geometry.ocelot"},"animations":{"baby_transform":"animation.ocelot_v1.0.baby_transform","look_at_target":"animation.common.look_at_target","setup":"animation.ocelot_v1.0.setup","sit":"animation.ocelot_v1.0.sit","sneak":"animation.ocelot_v1.0.sneak","sprint":"animation.ocelot_v1.0.sprint","walk":"animation.ocelot_v1.0.walk"},"animation_controllers":[{"setup":"controller.animation.ocelot_v1.0.setup"},{"move":"controller.animation.ocelot_v1.0.move"},{"baby":"controller.animation.ocelot_v1.0.baby"},{"look_at_target":"controller.animation.ocelot_v1.0.look_at_target"}],"render_controllers":["controller.render.ocelot"],"spawn_egg":{"texture":"spawn_egg","texture_index":16}}}},"minecraft:panda":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:panda","materials":{"default":"panda"},"textures":{"default":"textures/entity/panda/panda","lazy":"textures/entity/panda/panda_lazy","worried":"textures/entity/panda/panda_worried","playful":"textures/entity/panda/panda_playful","brown":"textures/entity/panda/panda_brown","weak":"textures/entity/panda/panda_sneezy","aggressive":"textures/entity/panda/panda_aggressive"},"geometry":{"default":"geometry.panda"},"animations":{"unhappy":"animation.panda.unhappy","sneezing":"animation.panda.sneezing","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.panda.baby_transform","sitting":"animation.panda.sitting","rolling":"animation.panda.rolling","lying":"animation.panda.lying"},"animation_controllers":[{"move":"controller.animation.panda.move"},{"unhappy":"controller.animation.panda.unhappy"},{"sneezing":"controller.animation.panda.sneezing"},{"baby":"controller.animation.panda.baby"}],"render_controllers":["controller.render.panda"],"spawn_egg":{"texture":"spawn_egg","texture_index":54}}}},"minecraft:parrot":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:parrot","materials":{"default":"parrot"},"textures":{"blue":"textures/entity/parrot/parrot_blue","green":"textures/entity/parrot/parrot_green","red_blue":"textures/entity/parrot/parrot_red_blue","yellow_blue":"textures/entity/parrot/parrot_yellow_blue","grey":"textures/entity/parrot/parrot_grey"},"geometry":{"default":"geometry.parrot"},"scripts":{"pre_animation":["variable.state = query.is_dancing ? 3 : (query.is_sitting ? 2 : (!query.is_on_ground && !query.is_jumping && !query.is_riding ? 0 : 1));","variable.dance.x = Math.cos(query.life_time * 57.3 * 20.0);","variable.dance.y = -Math.sin(query.life_time * 57.3 * 20.0);","variable.wing_flap = ((math.sin(query.wing_flap_position * 57.3) + 1) * query.wing_flap_speed);"]},"animations":{"moving":"animation.parrot.moving","base":"animation.parrot.base","dance":"animation.parrot.dance","sitting":"animation.parrot.sitting","flying":"animation.parrot.flying","standing":"animation.parrot.standing","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"setup":"controller.animation.parrot.setup"},{"move":"controller.animation.parrot.move"}],"render_controllers":["controller.render.parrot"],"spawn_egg":{"texture":"spawn_egg","texture_index":43}}}},"minecraft:phantom":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:phantom","materials":{"default":"phantom","invisible":"phantom_invisible"},"textures":{"default":"textures/entity/phantom"},"geometry":{"default":"geometry.phantom"},"scripts":{"initialize":["variable.runtimeid = 0;","variable.tailrotx = -5.0;","variable.wingrotz = 0.0;"],"animate":["phantom_base_pose_controller","move"]},"animations":{"phantom_base_pose":"animation.phantom.base_pose","phantom_base_pose_controller":"controller.animation.phantom.base_pose","move":"animation.phantom.move"},"particle_effects":{"wing_dust":"minecraft:phantom_trail_particle"},"sound_effects":{"flap":"mob.phantom.flap"},"render_controllers":["controller.render.phantom"],"spawn_egg":{"texture":"spawn_egg","texture_index":51}}}},"minecraft:pig":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:pig","min_engine_version":"1.8.0","materials":{"default":"pig"},"textures":{"default":"textures/entity/pig/pig","saddled":"textures/entity/pig/pig_saddle"},"geometry":{"default":"geometry.pig.v1.8"},"animations":{"setup":"animation.pig.setup","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.pig.baby_transform"},"scripts":{"animate":["setup",{"walk":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.pig"],"spawn_egg":{"texture":"spawn_egg","texture_index":2}}}},"minecraft:pig.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:pig","materials":{"default":"pig"},"textures":{"default":"textures/entity/pig/pig","saddled":"textures/entity/pig/pig_saddle"},"geometry":{"default":"geometry.pig"},"animations":{"setup":"animation.pig.setup.v1.0","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.pig.baby_transform"},"scripts":{"animate":["setup",{"walk":"query.modified_move_speed"},"look_at_target",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.pig"],"spawn_egg":{"texture":"spawn_egg","texture_index":2}}}},"minecraft:piglin":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:piglin","materials":{"default":"piglin"},"textures":{"default":"textures/entity/piglin/piglin"},"geometry":{"default":"geometry.piglin"},"spawn_egg":{"base_color":"#995f40","overlay_color":"#f9f3a4"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.attack = Math.sin((1.0 - (1.0 - variable.attack_time) * (1.0 - variable.attack_time)) * 180.0) * 57.3;","variable.attack2 = Math.sin(variable.attack_time * 180.0) * 57.3;","variable.z_bob = Math.cos(query.life_time * 103.13244) * 2.865 + 2.865;","variable.x_bob = Math.sin(query.life_time * 76.776372) * 2.865;"],"animate":[{"admire":"query.is_admiring"},{"humanoid_big_head":"query.is_baby"},{"celebrate_hunt":"query.is_celebrating"},{"celebrate_hunt_special":"query.is_celebrating_special"},"move","bob","look_at_target_controller","piglin_attack_controller","riding_controller"]},"animations":{"move":"animation.piglin.move","bob":"animation.humanoid.bob","humanoid_big_head":"animation.humanoid.big_head","admire":"animation.piglin.admire","celebrate_hunt":"animation.piglin.celebrate_hunt","celebrate_hunt_special":"animation.piglin.celebrate_hunt_special","look_at_target_controller":"controller.animation.humanoid.look_at_target","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","piglin_attack_controller":"controller.animation.piglin.attack","crossbow_hold":"animation.piglin.crossbow.hold","crossbow_charge":"animation.piglin.crossbow.charge","melee_attack":"animation.piglin.sword.attack","hand_attack":"animation.piglin.hand.attack","riding_controller":"controller.animation.humanoid.riding","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs"},"render_controllers":["controller.render.piglin"],"enable_attachables":true}}},"minecraft:piglin_brute":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:piglin_brute","materials":{"default":"piglin_brute"},"textures":{"default":"textures/entity/piglin/piglin_brute"},"geometry":{"default":"geometry.piglin"},"spawn_egg":{"base_color":"#592A10","overlay_color":"#F9F3A4"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.attack = Math.sin((1.0 - (1.0 - variable.attack_time) * (1.0 - variable.attack_time)) * 180.0) * 57.3;","variable.attack2 = Math.sin(variable.attack_time * 180.0) * 57.3;","variable.z_bob = Math.cos(query.life_time * 103.13244) * 2.865 + 2.865;","variable.x_bob = Math.sin(query.life_time * 76.776372) * 2.865;"],"animate":[{"humanoid_big_head":"query.is_baby"},"move","bob","look_at_target_controller","piglin_attack_controller","riding_controller"]},"animations":{"move":"animation.piglin.move","bob":"animation.humanoid.bob","humanoid_big_head":"animation.humanoid.big_head","look_at_target_controller":"controller.animation.humanoid.look_at_target","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","piglin_attack_controller":"controller.animation.piglin.attack","crossbow_hold":"animation.piglin.crossbow.hold","crossbow_charge":"animation.piglin.crossbow.charge","melee_attack":"animation.piglin.sword.attack","hand_attack":"animation.piglin.hand.attack","riding_controller":"controller.animation.humanoid.riding","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs"},"render_controllers":["controller.render.piglin_brute"],"enable_attachables":true}}},"minecraft:pillager":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:pillager","materials":{"default":"pillager"},"textures":{"default":"textures/entity/pillager"},"geometry":{"default":"geometry.pillager"},"spawn_egg":{"texture":"spawn_egg","texture_index":56},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"],"animate":["pillager_root_controller"]},"animations":{"humanoid_base_pose":"animation.humanoid.base_pose","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","attack.rotations":"animation.humanoid.attack.rotations","bob":"animation.humanoid.bob","crossbow_hold":"animation.pillager.crossbow.hold","crossbow_charge":"animation.pillager.crossbow.charge","celebrating":"animation.humanoid.celebrating","controller_humanoid_base_pose":"controller.animation.humanoid.base_pose","controller_look_at_target":"controller.animation.humanoid.look_at_target","controller_move":"controller.animation.humanoid.move","controller_riding":"controller.animation.humanoid.riding","controller_attack":"controller.animation.humanoid.attack","controller_bob":"controller.animation.humanoid.bob","controller_pillager_attack":"controller.animation.pillager.attack","pillager_root_controller":"controller.animation.pillager.root"},"render_controllers":["controller.render.pillager"],"enable_attachables":true,"hide_armor":true}}},"minecraft:player":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:player","materials":{"default":"entity_alphatest","cape":"entity_alphatest","animated":"player_animated"},"textures":{"default":"textures/entity/steve","cape":"textures/entity/cape_invisible"},"geometry":{"default":"geometry.humanoid.custom","cape":"geometry.cape"},"scripts":{"scale":"0.9375","initialize":["variable.is_holding_right = 0.0;","variable.is_blinking = 0.0;","variable.last_blink_time = 0.0;","variable.hand_bob = 0.0;"],"pre_animation":["variable.helmet_layer_visible = 1.0;","variable.leg_layer_visible = 1.0;","variable.boot_layer_visible = 1.0;","variable.chest_layer_visible = 1.0;","variable.attack_body_rot_y = Math.sin(360*Math.sqrt(variable.attack_time)) * 5.0;","variable.tcos0 = (math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.first_person_rotation_factor = math.sin((1 - variable.attack_time) * 180.0);","variable.hand_bob = query.life_time < 0.01 ? 0.0 : variable.hand_bob + ((query.is_on_ground && query.is_alive ? math.clamp(math.sqrt(math.pow(query.position_delta(0), 2.0) + math.pow(query.position_delta(2), 2.0)), 0.0, 0.1) : 0.0) - variable.hand_bob) * 0.02;","variable.map_angle = math.clamp(1 - variable.player_x_rotation / 45.1, 0.0, 1.0);","variable.item_use_normalized = query.main_hand_item_use_duration / query.main_hand_item_max_duration;"],"animate":["root"]},"animations":{"root":"controller.animation.player.root","base_controller":"controller.animation.player.base","hudplayer":"controller.animation.player.hudplayer","humanoid_base_pose":"animation.humanoid.base_pose","look_at_target":"controller.animation.humanoid.look_at_target","look_at_target_ui":"animation.player.look_at_target.ui","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","look_at_target_inverted":"animation.player.look_at_target.inverted","cape":"animation.player.cape","move.arms":"animation.player.move.arms","move.legs":"animation.player.move.legs","swimming":"animation.player.swim","swimming.legs":"animation.player.swim.legs","riding.arms":"animation.player.riding.arms","riding.legs":"animation.player.riding.legs","holding":"animation.player.holding","brandish_spear":"animation.humanoid.brandish_spear","holding_spyglass":"animation.humanoid.holding_spyglass","charging":"animation.humanoid.charging","attack.positions":"animation.player.attack.positions","attack.rotations":"animation.player.attack.rotations","sneaking":"animation.player.sneaking","bob":"animation.player.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","use_item_progress":"animation.humanoid.use_item_progress","skeleton_attack":"animation.skeleton.attack","sleeping":"animation.player.sleeping","first_person_base_pose":"animation.player.first_person.base_pose","first_person_empty_hand":"animation.player.first_person.empty_hand","first_person_swap_item":"animation.player.first_person.swap_item","first_person_shield_block":"animation.player.first_person.shield_block","first_person_attack_controller":"controller.animation.player.first_person_attack","first_person_attack_rotation":"animation.player.first_person.attack_rotation","first_person_vr_attack_rotation":"animation.player.first_person.vr_attack_rotation","first_person_walk":"animation.player.first_person.walk","first_person_map_controller":"controller.animation.player.first_person_map","first_person_map_hold":"animation.player.first_person.map_hold","first_person_map_hold_attack":"animation.player.first_person.map_hold_attack","first_person_map_hold_off_hand":"animation.player.first_person.map_hold_off_hand","first_person_map_hold_main_hand":"animation.player.first_person.map_hold_main_hand","first_person_crossbow_equipped":"animation.player.first_person.crossbow_equipped","third_person_crossbow_equipped":"animation.player.crossbow_equipped","third_person_bow_equipped":"animation.player.bow_equipped","crossbow_hold":"animation.player.crossbow_hold","crossbow_controller":"controller.animation.player.crossbow","shield_block_main_hand":"animation.player.shield_block_main_hand","shield_block_off_hand":"animation.player.shield_block_off_hand","blink":"controller.animation.persona.blink","tooting_goat_horn":"animation.humanoid.tooting_goat_horn"},"render_controllers":[{"controller.render.player.first_person":"variable.is_first_person"},{"controller.render.player.third_person":"!variable.is_first_person && !variable.map_face_icon"},{"controller.render.player.map":"variable.map_face_icon"}],"enable_attachables":true}}},"minecraft:polar_bear":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:polar_bear","materials":{"default":"polar_bear"},"textures":{"default":"textures/entity/polarbear"},"geometry":{"default":"geometry.polarbear"},"animations":{"walk":"animation.quadruped.walk","move":"animation.polarbear.move","look_at_target":"animation.common.look_at_target","baby_transform":"animation.polarbear.baby_transform"},"scripts":{"scale":"1.2"},"animation_controllers":[{"move":"controller.animation.polarbear.move"},{"baby":"controller.animation.polarbear.baby"}],"render_controllers":["controller.render.polarbear"],"spawn_egg":{"texture":"spawn_egg","texture_index":37}}}},"minecraft:pufferfish":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:pufferfish","min_engine_version":"1.8.0","materials":{"default":"pufferfish"},"textures":{"default":"textures/entity/fish/pufferfish"},"geometry":{"default":"geometry.pufferfish.small.v1.8","mid":"geometry.pufferfish.mid.v1.8","large":"geometry.pufferfish.large.v1.8"},"scripts":{"pre_animation":["variable.ZRot = !query.is_in_water ? Math.cos(query.time_stamp * 14.32) * 90 : 0.0;","variable.AnimationAmountBlend = Math.lerp(variable.AnimationAmountPrev, variable.AnimationAmount, query.frame_alpha);"],"animate":["general"]},"animations":{"flop":"animation.pufferfish.flop","swim":"animation.pufferfish.swim","general":"controller.animation.fish.general"},"render_controllers":[{"controller.render.pufferfish.small":"query.variant == 0"},{"controller.render.pufferfish.medium":"query.variant == 1"},{"controller.render.pufferfish.large":"query.variant == 2"}],"spawn_egg":{"texture":"spawn_egg","texture_index":46}}}},"minecraft:pufferfish.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:pufferfish","materials":{"default":"pufferfish"},"textures":{"default":"textures/entity/fish/pufferfish"},"geometry":{"default":"geometry.pufferfish.small","mid":"geometry.pufferfish.mid","large":"geometry.pufferfish.large"},"scripts":{"pre_animation":["variable.ZRot = !query.is_in_water ? Math.cos(query.time_stamp * 14.32) * 90 : 0.0;","variable.AnimationAmountBlend = Math.lerp(variable.AnimationAmountPrev, variable.AnimationAmount, query.frame_alpha);"],"animate":["general"]},"animations":{"flop":"animation.pufferfish.flop","swim":"animation.pufferfish.swim","general":"controller.animation.fish.general"},"render_controllers":[{"controller.render.pufferfish.small":"query.variant == 0"},{"controller.render.pufferfish.medium":"query.variant == 1"},{"controller.render.pufferfish.large":"query.variant == 2"}],"spawn_egg":{"texture":"spawn_egg","texture_index":46}}}},"minecraft:rabbit":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:rabbit","min_engine_version":"1.8.0","materials":{"default":"rabbit"},"textures":{"brown":"textures/entity/rabbit/brown","white":"textures/entity/rabbit/white","black":"textures/entity/rabbit/blackrabbit","white_splotched":"textures/entity/rabbit/white_splotched","gold":"textures/entity/rabbit/gold","salt":"textures/entity/rabbit/salt","toast":"textures/entity/rabbit/toast"},"geometry":{"default":"geometry.rabbit.v1.8"},"animations":{"move":"animation.rabbit.move","baby_transform":"animation.rabbit.baby_transform","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"general":"controller.animation.rabbit.general"},{"baby":"controller.animation.rabbit.baby"}],"render_controllers":["controller.render.rabbit"],"spawn_egg":{"texture":"spawn_egg","texture_index":24}}}},"minecraft:rabbit.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:rabbit","materials":{"default":"rabbit"},"textures":{"brown":"textures/entity/rabbit/brown","white":"textures/entity/rabbit/white","black":"textures/entity/rabbit/blackrabbit","white_splotched":"textures/entity/rabbit/white_splotched","gold":"textures/entity/rabbit/gold","salt":"textures/entity/rabbit/salt","toast":"textures/entity/rabbit/toast"},"geometry":{"default":"geometry.rabbit"},"animations":{"move":"animation.rabbit.move","baby_transform":"animation.rabbit.baby_transform","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"general":"controller.animation.rabbit.general"},{"baby":"controller.animation.rabbit.baby"}],"render_controllers":["controller.render.rabbit"],"spawn_egg":{"texture":"spawn_egg","texture_index":24}}}},"minecraft:ravager":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:ravager","textures":{"default":"textures/entity/illager/ravager"},"materials":{"default":"ravager"},"geometry":{"default":"geometry.ravager"},"render_controllers":["controller.render.ravager"],"spawn_egg":{"texture":"spawn_egg","texture_index":57},"animations":{"walk":"animation.ravager.walk","look_at_target":"animation.common.look_at_target","idle_mouth":"animation.ravager.idle_mouth","stunned":"animation.ravager.stunned","roaring":"animation.ravager.roaring","move":"controller.animation.ravager.move","head":"controller.animation.ravager.head_movement","biting":"animation.ravager.biting"},"scripts":{"pre_animation":["variable.roar_length = 1.0;","variable.bite_anim_duration = 0.75f;","variable.bite_neck_length = 10;"],"animate":["move","head"]},"particle_effects":{"stun_particles":"minecraft:stunned_emitter"}}}},"minecraft:salmon":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:salmon","materials":{"default":"salmon"},"textures":{"default":"textures/entity/fish/salmon"},"geometry":{"default":"geometry.salmon"},"scripts":{"pre_animation":["variable.ZRot = !query.is_in_water ? Math.cos((query.time_stamp + query.frame_alpha) * 14.32) * 90 : 0.0;","variable.AnimationAmountBlend = Math.lerp(variable.AnimationAmountPrev, variable.AnimationAmount, query.frame_alpha);"]},"animations":{"flop":"animation.salmon.flop","swim":"animation.salmon.swim"},"animation_controllers":[{"general":"controller.animation.fish.general"}],"render_controllers":["controller.render.salmon"],"spawn_egg":{"texture":"spawn_egg","texture_index":47}}}},"minecraft:sheep":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:sheep","min_engine_version":"1.8.0","materials":{"default":"sheep"},"textures":{"default":"textures/entity/sheep/sheep"},"geometry":{"default":"geometry.sheep.v1.8","sheared":"geometry.sheep.sheared.v1.8"},"animations":{"setup":"animation.sheep.setup","grazing":"animation.sheep.grazing","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.sheep.baby_transform","move":"controller.animation.sheep.move"},"scripts":{"animate":["setup","look_at_target","move",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.sheep"],"spawn_egg":{"texture":"spawn_egg","texture_index":3}}}},"minecraft:sheep.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:sheep","materials":{"default":"sheep"},"textures":{"default":"textures/entity/sheep/sheep"},"geometry":{"default":"geometry.sheep","sheared":"geometry.sheep.sheared"},"particle_emitters":{"flame":"animation.blaze.flame"},"animations":{"setup":"animation.sheep.setup","grazing":"animation.sheep.grazing","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.sheep.baby_transform","move":"controller.animation.sheep.move"},"scripts":{"animate":["setup","look_at_target","move",{"baby_transform":"query.is_baby"}]},"render_controllers":["controller.render.sheep"],"spawn_egg":{"texture":"spawn_egg","texture_index":3}}}},"minecraft:shulker":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:shulker","min_engine_version":"1.8.0","materials":{"default":"shulker"},"textures":{"undyed":"textures/entity/shulker/shulker_undyed","white":"textures/entity/shulker/shulker_white","orange":"textures/entity/shulker/shulker_orange","magenta":"textures/entity/shulker/shulker_magenta","light_blue":"textures/entity/shulker/shulker_light_blue","yellow":"textures/entity/shulker/shulker_yellow","lime":"textures/entity/shulker/shulker_lime","pink":"textures/entity/shulker/shulker_pink","gray":"textures/entity/shulker/shulker_gray","silver":"textures/entity/shulker/shulker_silver","cyan":"textures/entity/shulker/shulker_cyan","purple":"textures/entity/shulker/shulker_purple","blue":"textures/entity/shulker/shulker_blue","brown":"textures/entity/shulker/shulker_brown","green":"textures/entity/shulker/shulker_green","red":"textures/entity/shulker/shulker_red","black":"textures/entity/shulker/shulker_black"},"geometry":{"default":"geometry.shulker.v1.8"},"spawn_egg":{"texture":"spawn_egg","texture_index":34},"scripts":{"pre_animation":["variable.Shulker.LidPositionFactor = 180 * (0.5 + variable.Shulker.PeekAmount);","variable.Shulker.LidRotationFactor = -1 + Math.sin(180 * (0.5 + variable.Shulker.PeekAmount));","variable.Shulker.UpFacing = variable.Shulker.FacingDirection == 1;","variable.Shulker.NorthFacing = variable.Shulker.FacingDirection == 2;","variable.Shulker.SouthFacing = variable.Shulker.FacingDirection == 3;","variable.Shulker.WestFacing = variable.Shulker.FacingDirection == 4;","variable.Shulker.EastFacing = variable.Shulker.FacingDirection == 5;","variable.Shulker.XPreRotation = variable.Shulker.UpFacing * 180 + variable.Shulker.NorthFacing * 90 - variable.Shulker.SouthFacing * 90;","variable.Shulker.ZPreRotation = variable.Shulker.NorthFacing * 180 + variable.Shulker.WestFacing * 90 - variable.Shulker.EastFacing * 90;","variable.Shulker.XOffset = -variable.Shulker.WestFacing * 7.99 + variable.Shulker.EastFacing * 7.99;","variable.Shulker.YOffset = variable.Shulker.UpFacing * 16 + variable.Shulker.NorthFacing * 7.99 + variable.Shulker.SouthFacing * 7.99 + variable.Shulker.WestFacing * 7.99 + variable.Shulker.EastFacing * 7.99;","variable.Shulker.ZOffset = variable.Shulker.NorthFacing * 7.99 - variable.Shulker.SouthFacing * 7.99;"]},"animations":{"facing":"animation.shulker.facing","move":"animation.shulker.move","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"facing":"controller.animation.shulker.facing"},{"move":"controller.animation.shulker.move"}],"render_controllers":["controller.render.shulker"]}}},"minecraft:shulker.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:shulker","materials":{"default":"shulker"},"textures":{"undyed":"textures/entity/shulker/shulker_undyed","white":"textures/entity/shulker/shulker_white","orange":"textures/entity/shulker/shulker_orange","magenta":"textures/entity/shulker/shulker_magenta","light_blue":"textures/entity/shulker/shulker_light_blue","yellow":"textures/entity/shulker/shulker_yellow","lime":"textures/entity/shulker/shulker_lime","pink":"textures/entity/shulker/shulker_pink","gray":"textures/entity/shulker/shulker_gray","silver":"textures/entity/shulker/shulker_silver","cyan":"textures/entity/shulker/shulker_cyan","purple":"textures/entity/shulker/shulker_purple","blue":"textures/entity/shulker/shulker_blue","brown":"textures/entity/shulker/shulker_brown","green":"textures/entity/shulker/shulker_green","red":"textures/entity/shulker/shulker_red","black":"textures/entity/shulker/shulker_black"},"geometry":{"default":"geometry.shulker"},"spawn_egg":{"texture":"spawn_egg","texture_index":34},"scripts":{"pre_animation":["variable.Shulker.LidPositionFactor = 180 * (0.5 + variable.Shulker.PeekAmount);","variable.Shulker.LidRotationFactor = -1 + Math.sin(180 * (0.5 + variable.Shulker.PeekAmount));","variable.Shulker.UpFacing = variable.Shulker.FacingDirection == 1;","variable.Shulker.NorthFacing = variable.Shulker.FacingDirection == 2;","variable.Shulker.SouthFacing = variable.Shulker.FacingDirection == 3;","variable.Shulker.WestFacing = variable.Shulker.FacingDirection == 4;","variable.Shulker.EastFacing = variable.Shulker.FacingDirection == 5;","variable.Shulker.XPreRotation = variable.Shulker.UpFacing * 180 + variable.Shulker.NorthFacing * 90 - variable.Shulker.SouthFacing * 90;","variable.Shulker.ZPreRotation = variable.Shulker.NorthFacing * 180 + variable.Shulker.WestFacing * 90 - variable.Shulker.EastFacing * 90;","variable.Shulker.XOffset = -variable.Shulker.WestFacing * 7.99 + variable.Shulker.EastFacing * 7.99;","variable.Shulker.YOffset = variable.Shulker.UpFacing * 16 + variable.Shulker.NorthFacing * 7.99 + variable.Shulker.SouthFacing * 7.99 + variable.Shulker.WestFacing * 7.99 + variable.Shulker.EastFacing * 7.99;","variable.Shulker.ZOffset = variable.Shulker.NorthFacing * 7.99 - variable.Shulker.SouthFacing * 7.99;"]},"animations":{"facing":"animation.shulker.facing.v1.0","move":"animation.shulker.move.v1.0","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"facing":"controller.animation.shulker.facing"},{"move":"controller.animation.shulker.move"}],"render_controllers":["controller.render.shulker"]}}},"minecraft:shulker_bullet":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:shulker_bullet","materials":{"default":"shulker_bullet"},"textures":{"default":"textures/entity/shulker/spark"},"geometry":{"default":"geometry.shulker_bullet"},"animations":{"move":"animation.shulker_bullet.move"},"scripts":{"animate":["move"]},"render_controllers":["controller.render.shulker_bullet"]}}},"minecraft:silverfish":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:silverfish","materials":{"default":"silverfish","body_layer":"silverfish_layers"},"textures":{"default":"textures/entity/silverfish"},"geometry":{"default":"geometry.silverfish"},"animations":{"move":"animation.silverfish.move"},"animation_controllers":[{"move":"controller.animation.silverfish.move"}],"render_controllers":["controller.render.silverfish"],"spawn_egg":{"texture":"spawn_egg","texture_index":8}}}},"minecraft:skeleton":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:skeleton","min_engine_version":"1.8.0","materials":{"default":"skeleton"},"textures":{"default":"textures/entity/skeleton/skeleton"},"geometry":{"default":"geometry.skeleton.v1.8"},"spawn_egg":{"texture":"spawn_egg","texture_index":9},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","swimming":"animation.zombie.swimming","use_item_progress":"animation.humanoid.use_item_progress","skeleton_attack":"animation.skeleton.attack"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.zombie.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"skeleton_attack":"controller.animation.skeleton.attack"}],"render_controllers":["controller.render.skeleton"],"enable_attachables":true}}},"minecraft:skeleton.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:skeleton","materials":{"default":"skeleton"},"textures":{"default":"textures/entity/skeleton/skeleton"},"geometry":{"default":"geometry.skeleton"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","skeleton_attack":"animation.skeleton.attack.v1.0"},"animation_controllers":[{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"skeleton_attack":"controller.animation.skeleton.attack"}],"render_controllers":["controller.render.skeleton"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":9}}}},"minecraft:skeleton_horse_v1":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:skeleton_horse","materials":{"default":"horse"},"textures":{"skeleton":"textures/entity/horse/horse_skeleton","markings_none":"textures/entity/horse/horse_markings_none","armor_none":"textures/entity/horse/armor/horse_armor_none"},"geometry":{"default":"geometry.horse"},"animations":{"setup":"animation.horse.setup","baby_transform":"animation.horse.baby_transform","walk":"animation.horse.walk","eat":"animation.horse.eat","stand":"animation.horse.stand","shake_tail":"animation.horse.shake_tail","mouth":"animation.horse.mouth","look_at_player":"animation.horse.look_at_player"},"scripts":{"initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;","variable.leg_back_origin = query.bone_origin('leg1a');","variable.leg_front_origin = query.bone_origin('leg3a');","variable.head_rotation = query.bone_rotation('head');"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.walk_tail_angle = math.clamp(query.modified_move_speed * 50.0, 0.0, 90.0) * (1.0 - variable.stand_anim);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_walk_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_walk_factor * 45.8 * query.modified_move_speed;","variable.leg_stand = math.cos((query.life_time * 20.0) * 34.38) * variable.stand_anim;","variable.baby_ratio = query.is_baby ? ((0.0625 - query.model_scale) * 16.0) : 0.0;"],"animate":["setup",{"baby_transform":"query.is_baby"},{"walk":"variable.stand_anim < 0.5"},{"stand":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"shake_tail":"variable.shake_tail"},"mouth","look_at_player"]},"render_controllers":["controller.render.skeleton_horse.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":32}}}},"minecraft:skeleton_horse_v2":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:skeleton_horse","min_engine_version":"1.2.6","materials":{"default":"horse"},"textures":{"skeleton":"textures/entity/horse2/horse_skeleton","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v2"},"animations":{"setup":"animation.horse.v2.setup","baby_transform":"animation.horse.v2.baby_transform","walk":"animation.horse.v2.walk","eat":"animation.horse.v2.eat","stand":"animation.horse.v2.stand","tail":"animation.horse.v2.tail"},"scripts":{"initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;","variable.leg1a_aabb = query.bone_aabb('leg1a');","variable.y_adjust = query.is_baby ? 0.0 : (variable.leg1a_aabb.max.y - variable.leg1a_aabb.min.y) * (1.0 - (query.model_scale * 16.0));"],"animate":["setup",{"baby_transform":"query.is_baby"},"walk","stand",{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.skeleton_horse.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":32}}}},"minecraft:skeleton_horse_v3":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:skeleton_horse","min_engine_version":"1.17.10","materials":{"default":"horse"},"textures":{"skeleton":"textures/entity/horse2/horse_skeleton","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v3"},"animations":{"baby_transform":"animation.horse.v3.baby_transform","walk":"animation.horse.v3.walk","eat":"animation.horse.v3.eat","rear":"animation.horse.v3.rear","tail":"animation.horse.v3.tail","look_at_player":"animation.horse.v3.look_at_player"},"scripts":{"initialize":["variable.eat_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;"],"animate":[{"baby_transform":"query.is_baby"},"walk","look_at_player",{"rear":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.skeleton_horse.v3"],"spawn_egg":{"texture":"spawn_egg","texture_index":32}}}},"minecraft:skull":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:skull","textures":{"default":"textures/entity/steve","steve":"textures/entity/steve","skeleton":"textures/entity/skulls/skeleton","wither":"textures/entity/skulls/wither_skeleton","zombie":"textures/entity/skulls/zombie","creeper":"textures/entity/skulls/creeper","dragon":"textures/entity/dragon/dragon"},"geometry":{"default":"geometry.player_head","steve":"geometry.player_head","skeleton":"geometry.mob_head","wither":"geometry.mob_head","zombie":"geometry.mob_head","creeper":"geometry.mob_head","dragon":"geometry.dragon_head"}}}},"minecraft:slime":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:slime","materials":{"default":"slime","outer":"slime_outer"},"textures":{"default":"textures/entity/slime/slime"},"geometry":{"default":"geometry.slime","armor":"geometry.slime.armor"},"scripts":{"pre_animation":["variable.squish_factor = (query.previous_squish_value + (query.current_squish_value - query.previous_squish_value) * query.frame_alpha);","variable.bounce = 1 / ((variable.squish_factor / (query.variant * 0.5 + 1)) + 1);","variable.horizontal_scale_amount = variable.bounce * query.variant;","variable.vertical_scale_amount = (1 / variable.bounce) * query.variant;"],"scaleX":"variable.horizontal_scale_amount","scaleY":"variable.vertical_scale_amount","scaleZ":"variable.horizontal_scale_amount"},"render_controllers":["controller.render.slime","controller.render.slime_armor"],"spawn_egg":{"texture":"spawn_egg","texture_index":10}}}},"minecraft:small_fireball":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:small_fireball","materials":{"default":"fireball"},"textures":{"default":"textures/items/fireball"},"geometry":{"default":"geometry.fireball"},"animations":{"face_player":"animation.actor.billboard"},"scripts":{"scale":"0.5","animate":["face_player"]},"render_controllers":["controller.render.fireball"]}}},"minecraft:snowball":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:snowball","materials":{"default":"snowball"},"textures":{"default":"textures/items/snowball"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.item_sprite"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:snow_golem":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:snow_golem","min_engine_version":"1.8.0","materials":{"default":"snow_golem","head":"snow_golem_pumpkin"},"textures":{"default":"textures/entity/snow_golem"},"geometry":{"default":"geometry.snowgolem.v1.8"},"animations":{"move":"animation.snowgolem.move.v1.8","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"move":"controller.animation.snowgolem.move.v1.8"}],"render_controllers":["controller.render.snowgolem"]}}},"minecraft:snow_golem.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:snow_golem","materials":{"default":"snow_golem","head":"snow_golem_pumpkin"},"textures":{"default":"textures/entity/snow_golem"},"geometry":{"default":"geometry.snowgolem"},"animations":{"move":"animation.snowgolem.move","arms":"animation.snowgolem.arms","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"move":"controller.animation.snowgolem.move"}],"render_controllers":["controller.render.snowgolem"]}}},"minecraft:spider":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:spider","min_engine_version":"1.8.0","materials":{"default":"spider","invisible":"spider_invisible"},"textures":{"default":"textures/entity/spider/spider"},"geometry":{"default":"geometry.spider.v1.8"},"animations":{"default_leg_pose":"animation.spider.default_leg_pose","look_at_target":"animation.spider.look_at_target","walk":"animation.spider.walk"},"animation_controllers":[{"move":"controller.animation.spider.move"}],"render_controllers":["controller.render.spider"],"spawn_egg":{"texture":"spawn_egg","texture_index":11}}}},"minecraft:spider.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:spider","materials":{"default":"spider","invisible":"spider_invisible"},"textures":{"default":"textures/entity/spider/spider"},"geometry":{"default":"geometry.spider"},"animations":{"default_leg_pose":"animation.spider.default_leg_pose","look_at_target":"animation.spider.look_at_target","walk":"animation.spider.walk"},"animation_controllers":[{"move":"controller.animation.spider.move"}],"render_controllers":["controller.render.spider"],"spawn_egg":{"texture":"spawn_egg","texture_index":11}}}},"minecraft:splash_potion":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:splash_potion","materials":{"default":"splash_potion_enchanted"},"textures":{"moveSlowdown":"textures/items/potion_bottle_splash_moveSlowdown","moveSpeed":"textures/items/potion_bottle_splash_moveSpeed","digSlowdown":"textures/items/potion_bottle_splash_digSlowdown","digSpeed":"textures/items/potion_bottle_splash_digSpeed","damageBoost":"textures/items/potion_bottle_splash_damageBoost","heal":"textures/items/potion_bottle_splash_heal","harm":"textures/items/potion_bottle_splash_harm","jump":"textures/items/potion_bottle_splash_jump","confusion":"textures/items/potion_bottle_splash_confusion","regeneration":"textures/items/potion_bottle_splash_regeneration","resistance":"textures/items/potion_bottle_splash_resistance","fireResistance":"textures/items/potion_bottle_splash_fireResistance","waterBreathing":"textures/items/potion_bottle_splash_waterBreathing","invisibility":"textures/items/potion_bottle_splash_invisibility","blindness":"textures/items/potion_bottle_splash_blindness","nightVision":"textures/items/potion_bottle_splash_nightVision","hunger":"textures/items/potion_bottle_splash_hunger","weakness":"textures/items/potion_bottle_splash_weakness","poison":"textures/items/potion_bottle_splash_poison","wither":"textures/items/potion_bottle_splash_wither","healthBoost":"textures/items/potion_bottle_splash_healthBoost","absorption":"textures/items/potion_bottle_splash_absorption","saturation":"textures/items/potion_bottle_splash_saturation","levitation":"textures/items/potion_bottle_splash_levitation","turtleMaster":"textures/items/potion_bottle_splash_turtleMaster","slowFall":"textures/items/potion_bottle_splash_slowFall","default":"textures/items/potion_bottle_splash","enchanted":"textures/misc/enchanted_item_glint"},"geometry":{"default":"geometry.item_sprite"},"render_controllers":["controller.render.splash_potion"],"animations":{"flying":"animation.actor.billboard"},"scripts":{"animate":["flying"]}}}},"minecraft:squid":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:squid","materials":{"default":"squid"},"textures":{"default":"textures/entity/squid"},"geometry":{"default":"geometry.squid"},"animations":{"move":"animation.squid.move","squid_rotate":"animation.squid.rotate"},"scripts":{"animate":["move","squid_rotate"]},"render_controllers":["controller.render.squid"],"spawn_egg":{"texture":"spawn_egg","texture_index":15}}}},"minecraft:stray":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:stray","min_engine_version":"1.8.0","materials":{"default":"stray","overlay":"stray_clothes"},"textures":{"default":"textures/entity/skeleton/stray","overlay":"textures/entity/skeleton/stray_overlay"},"geometry":{"default":"geometry.skeleton.stray.v1.8","overlay":"geometry.stray.armor.v1.8"},"spawn_egg":{"texture":"spawn_egg","texture_index":27},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","swimming":"animation.zombie.swimming","use_item_progress":"animation.humanoid.use_item_progress","skeleton_attack":"animation.skeleton.attack"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.zombie.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"skeleton_attack":"controller.animation.skeleton.attack"}],"render_controllers":["controller.render.stray_clothes","controller.render.stray"],"enable_attachables":true}}},"minecraft:stray.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:stray","materials":{"default":"stray","overlay":"stray_clothes"},"textures":{"default":"textures/entity/skeleton/stray","overlay":"textures/entity/skeleton/stray_overlay"},"geometry":{"default":"geometry.skeleton.stray","overlay":"geometry.stray.armor"},"spawn_egg":{"texture":"spawn_egg","texture_index":27},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","skeleton_attack":"animation.skeleton.attack"},"animation_controllers":[{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"skeleton_attack":"controller.animation.skeleton.attack"}],"render_controllers":["controller.render.stray_clothes","controller.render.stray"],"enable_attachables":true}}},"minecraft:strider":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:strider","materials":{"default":"strider"},"textures":{"default":"textures/entity/strider/strider","saddled":"textures/entity/strider/strider_saddled","suffocated":"textures/entity/strider/strider_suffocated","suffocated_saddled":"textures/entity/strider/strider_suffocated_saddled"},"geometry":{"default":"geometry.strider"},"spawn_egg":{"base_color":"#9c3436","overlay_color":"#4d494d"},"scripts":{"pre_animation":["variable.animation_speed = Math.min(query.modified_move_speed, 0.25);","variable.speed = 85.9437;","variable.bristle_flow=Math.cos(query.modified_distance_moved * variable.speed + 180) * variable.animation_speed;","variable.bristle_range_mod=1;","variable.bristle_speed_mod=1;"],"animate":["look_at_target","walk","bristle_flow"]},"animations":{"look_at_target":"animation.strider.look_at_target.default","walk":"animation.strider.walk","bristle_flow":"animation.strider.bristle_flow"},"render_controllers":["controller.render.strider"]}}},"minecraft:tadpole":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:tadpole","materials":{"default":"tadpole"},"textures":{"default":"textures/entity/tadpole/tadpole"},"geometry":{"default":"geometry.tadpole"},"spawn_egg":{"base_color":"#6d533d","overlay_color":"#160a00"},"animations":{"swim":"animation.tadpole.swim"},"animation_controllers":[{"general":"controller.animation.tadpole.general"}],"render_controllers":["controller.render.tadpole"]}}},"minecraft:thrown_trident":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:thrown_trident","textures":{"default":"textures/entity/trident","loyalty_rope":"textures/entity/loyalty_rope"},"geometry":{"default":"geometry.trident"}}}},"minecraft:tnt_minecart":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:tnt_minecart","min_engine_version":"1.8.0","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart.v1.8"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move"},"render_controllers":["controller.render.minecart"]}}},"minecraft:tnt_minecart.v1.0":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:tnt_minecart","materials":{"default":"minecart"},"textures":{"default":"textures/entity/minecart"},"geometry":{"default":"geometry.minecart"},"scripts":{"pre_animation":["variable.hurt = query.hurt_time - query.frame_alpha;"],"animate":["move"]},"animations":{"move":"animation.minecart.move.v1.0"},"render_controllers":["controller.render.minecart"]}}},"minecraft:trader_llama":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:trader_llama","min_engine_version":"1.8.0","materials":{"default":"llama"},"textures":{"creamy":"textures/entity/llama/llama_creamy","white":"textures/entity/llama/llama_white","brown":"textures/entity/llama/llama_brown","gray":"textures/entity/llama/llama_gray","decor_none":"textures/entity/llama/decor/decor_none","decor_white":"textures/entity/llama/decor/decor_white","decor_orange":"textures/entity/llama/decor/decor_orange","decor_magenta":"textures/entity/llama/decor/decor_magenta","decor_light_blue":"textures/entity/llama/decor/decor_light_blue","decor_yellow":"textures/entity/llama/decor/decor_yellow","decor_lime":"textures/entity/llama/decor/decor_lime","decor_pink":"textures/entity/llama/decor/decor_pink","decor_gray":"textures/entity/llama/decor/decor_gray","decor_silver":"textures/entity/llama/decor/decor_silver","decor_cyan":"textures/entity/llama/decor/decor_cyan","decor_purple":"textures/entity/llama/decor/decor_purple","decor_blue":"textures/entity/llama/decor/decor_blue","decor_brown":"textures/entity/llama/decor/decor_brown","decor_green":"textures/entity/llama/decor/decor_green","decor_red":"textures/entity/llama/decor/decor_red","decor_black":"textures/entity/llama/decor/decor_black","decor_wandering_trader":"textures/entity/llama/decor/trader_llama_decor"},"geometry":{"default":"geometry.llama.v1.8"},"animations":{"setup":"animation.llama.setup","walk":"animation.quadruped.walk","look_at_target":"animation.common.look_at_target","baby_transform":"animation.llama.baby_transform"},"animation_controllers":[{"move":"controller.animation.llama.move"},{"baby":"controller.animation.llama.baby"}],"render_controllers":["controller.render.llama"],"spawn_egg":{"base_color":"#eaa430","overlay_color":"#456296"}}}},"minecraft:tripod_camera":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:tripod_camera","materials":{"default":"camera"},"textures":{"default":"textures/entity/camera_tripod"},"geometry":{"default":"geometry.tripod_camera"},"animations":{"neutral":"animation.tripod_camera.neutral"},"animation_controllers":[{"base":"controller.animation.tripod_camera.base_pose"}],"render_controllers":["controller.render.tripod_camera"]}}},"minecraft:tropicalfish":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:tropicalfish","materials":{"default":"tropicalfish"},"textures":{"typeA":"textures/entity/fish/tropical_a","typeB":"textures/entity/fish/tropical_b","aPattern1":"textures/entity/fish/tropical_a_pattern_1","aPattern2":"textures/entity/fish/tropical_a_pattern_2","aPattern3":"textures/entity/fish/tropical_a_pattern_3","aPattern4":"textures/entity/fish/tropical_a_pattern_4","aPattern5":"textures/entity/fish/tropical_a_pattern_5","aPattern6":"textures/entity/fish/tropical_a_pattern_6","bPattern1":"textures/entity/fish/tropical_b_pattern_1","bPattern2":"textures/entity/fish/tropical_b_pattern_2","bPattern3":"textures/entity/fish/tropical_b_pattern_3","bPattern4":"textures/entity/fish/tropical_b_pattern_4","bPattern5":"textures/entity/fish/tropical_b_pattern_5","bPattern6":"textures/entity/fish/tropical_b_pattern_6"},"scripts":{"pre_animation":["variable.ZRot = !query.is_in_water ? Math.cos((query.time_stamp + query.frame_alpha) * 0.25) * 90 : 0.0;","variable.AnimationAmountBlend = Math.lerp(variable.AnimationAmountPrev, variable.AnimationAmount, query.frame_alpha);"]},"geometry":{"typeA":"geometry.tropicalfish_a","typeB":"geometry.tropicalfish_b"},"animations":{"flop":"animation.tropicalfish.flop","swim":"animation.tropicalfish.swim"},"animation_controllers":[{"general":"controller.animation.fish.general"}],"render_controllers":["controller.render.tropicalfish"],"spawn_egg":{"texture":"spawn_egg","texture_index":44}}}},"minecraft:turtle":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:turtle","materials":{"default":"turtle"},"textures":{"default":"textures/entity/sea_turtle"},"geometry":{"default":"geometry.turtle"},"scripts":{"pre_animation":["variable.timeMultiplier = query.has_rider ? 0.39972 : 1.0;","variable.backLegMultiplier = query.has_rider ? 0.5 : 3.0;","variable.frontLegMultiplier = query.has_rider ? 2.0 : 8.0;","variable.legSpeedMultiplier = query.has_rider ? 2.0 : 5.0;"],"scale":"1.2"},"animations":{"general":"animation.turtle.general","move":"animation.turtle.move","ground_move":"animation.turtle.ground_move","look_at_target":"animation.common.look_at_target"},"animation_controllers":[{"general":"controller.animation.turtle.general"},{"move":"controller.animation.turtle.move"}],"render_controllers":["controller.render.turtle"],"spawn_egg":{"texture":"spawn_egg","texture_index":50}}}},"minecraft:vex":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:vex","min_engine_version":"1.8.0","materials":{"default":"vex"},"textures":{"default":"textures/entity/vex/vex","charging":"textures/entity/vex/vex_charging"},"geometry":{"default":"geometry.vex.v1.8"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"],"scale":"0.4"},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","swimming":"animation.humanoid.swimming","use_item_progress":"animation.humanoid.use_item_progress","vex_move":"animation.vex.move"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"vex_move":"controller.animation.vex.move"}],"render_controllers":["controller.render.vex"],"spawn_egg":{"texture":"spawn_egg","texture_index":41}}}},"minecraft:vex.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:vex","materials":{"default":"vex"},"textures":{"default":"textures/entity/vex/vex","charging":"textures/entity/vex/vex_charging"},"geometry":{"default":"geometry.vex"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.attackbodyroty = Math.sin(Math.sqrt(variable.attack_time) * 360.0) * 11.46;"],"scale":"0.4"},"animations":{"humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.vex.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","vex_move":"animation.vex.move"},"animation_controllers":[{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"vex_move":"controller.animation.vex.move"}],"render_controllers":["controller.render.vex"],"spawn_egg":{"texture":"spawn_egg","texture_index":41}}}},"minecraft:vex.v1.0.json":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:vex","materials":{"default":"vex"},"textures":{"default":"textures/entity/vex/vex","charging":"textures/entity/vex/vex_charging"},"geometry":{"default":"geometry.vex"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"],"scale":"0.4"},"animations":{"humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","vex_move":"animation.vex.move"},"animation_controllers":[{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"vex_move":"controller.animation.vex.move"}],"render_controllers":["controller.render.vex"],"spawn_egg":{"texture":"spawn_egg","texture_index":41}}}},"minecraft:villager":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:villager","min_engine_version":"1.8.0","materials":{"default":"villager"},"textures":{"farmer":"textures/entity/villager/farmer","librarian":"textures/entity/villager/librarian","priest":"textures/entity/villager/priest","smith":"textures/entity/villager/smith","butcher":"textures/entity/villager/butcher"},"geometry":{"default":"geometry.villager.v1.8"},"scripts":{"scale":"0.9375"},"animations":{"general":"animation.villager.general","look_at_target":"animation.common.look_at_target","move":"animation.villager.move","baby_transform":"animation.villager.baby_transform"},"animation_controllers":[{"general":"controller.animation.villager.general"},{"move":"controller.animation.villager.move"},{"baby":"controller.animation.villager.baby"}],"render_controllers":["controller.render.villager"],"spawn_egg":{"texture":"spawn_egg","texture_index":14}}}},"minecraft:villager.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:villager","materials":{"default":"villager"},"textures":{"farmer":"textures/entity/villager/farmer","librarian":"textures/entity/villager/librarian","priest":"textures/entity/villager/priest","smith":"textures/entity/villager/smith","butcher":"textures/entity/villager/butcher"},"geometry":{"default":"geometry.villager"},"scripts":{"scale":"0.9375"},"animations":{"general":"animation.villager.general.v1.0","look_at_target":"animation.common.look_at_target","move":"animation.villager.move","baby_transform":"animation.villager.baby_transform"},"animation_controllers":[{"general":"controller.animation.villager.general"},{"move":"controller.animation.villager.move"},{"baby":"controller.animation.villager.baby"}],"render_controllers":["controller.render.villager.v1.0"],"spawn_egg":{"texture":"spawn_egg","texture_index":14}}}},"minecraft:villager_v2":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:villager_v2","materials":{"default":"villager_v2","masked":"villager_v2_masked"},"textures":{"base":"textures/entity/villager2/villager","base2":"textures/entity/villager2/villager","base3":"textures/entity/villager2/villager","base4":"textures/entity/villager2/villager","base5":"textures/entity/villager2/villager","base6":"textures/entity/villager2/villager","desert":"textures/entity/villager2/biomes/biome_desert","jungle":"textures/entity/villager2/biomes/biome_jungle","plains":"textures/entity/villager2/biomes/biome_plains","savanna":"textures/entity/villager2/biomes/biome_savanna","snow":"textures/entity/villager2/biomes/biome_snow","swamp":"textures/entity/villager2/biomes/biome_swamp","taiga":"textures/entity/villager2/biomes/biome_taiga","armorer":"textures/entity/villager2/professions/armorer","butcher":"textures/entity/villager2/professions/butcher","cartographer":"textures/entity/villager2/professions/cartographer","cleric":"textures/entity/villager2/professions/cleric","farmer":"textures/entity/villager2/professions/farmer","fisherman":"textures/entity/villager2/professions/fisherman","fletcher":"textures/entity/villager2/professions/fletcher","leatherworker":"textures/entity/villager2/professions/leatherworker","librarian":"textures/entity/villager2/professions/librarian","shepherd":"textures/entity/villager2/professions/shepherd","tool_smith":"textures/entity/villager2/professions/toolsmith","weapon_smith":"textures/entity/villager2/professions/weaponsmith","stonemason":"textures/entity/villager2/professions/stonemason","nitwit":"textures/entity/villager2/professions/nitwit","unskilled":"textures/entity/villager2/professions/unskilled","level_stone":"textures/entity/villager2/levels/level_stone","level_iron":"textures/entity/villager2/levels/level_iron","level_gold":"textures/entity/villager2/levels/level_gold","level_emerald":"textures/entity/villager2/levels/level_emerald","level_diamond":"textures/entity/villager2/levels/level_diamond"},"geometry":{"default":"geometry.villager_v2"},"scripts":{"scale":"0.9375","pre_animation":["variable.num_professions = 15;","variable.num_tiers = 3;","variable.profession_index = (query.variant < variable.num_professions ? query.variant : 0);","variable.level_index = query.trade_tier;"]},"animations":{"general":"animation.villager.general","look_at_target":"animation.common.look_at_target","move":"animation.villager.move","raise_arms":"animation.villager.raise_arms","baby_transform":"animation.villager.baby_transform","get_in_bed":"animation.villager.get_in_bed"},"animation_controllers":[{"general":"controller.animation.villager_v2.general"},{"move":"controller.animation.villager_v2.move"},{"raise_arms":"controller.animation.villager_v2.raise_arms"},{"baby":"controller.animation.villager_v2.baby"}],"render_controllers":["controller.render.villager_v2_base","controller.render.villager_v2_masked","controller.render.villager_v2_level"],"spawn_egg":{"texture":"spawn_egg","texture_index":14}}}},"minecraft:vindicator":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:vindicator","min_engine_version":"1.8.0","materials":{"default":"vindicator"},"textures":{"default":"textures/entity/vindicator"},"geometry":{"default":"geometry.vindicator.v1.8"},"spawn_egg":{"texture":"spawn_egg","texture_index":39},"scripts":{"scale":"0.9375","animate":["vindicator_base","vindicator_walk","controller_look_at_target","controller_vindicator_base","controller_riding"]},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","riding.arms":"animation.vindicator.riding.arms","riding.legs":"animation.vindicator.riding.legs","vindicator_base":"animation.vindicator.base","vindicator_attack":"animation.vindicator.attack","vindicator_hand_attack":"animation.vindicator.hand_attack","vindicator_walk":"animation.vindicator.walk","celebrating":"animation.humanoid.celebrating","controller_look_at_target":"controller.animation.humanoid.look_at_target","controller_vindicator_base":"controller.animation.vindicator.base","controller_riding":"controller.animation.humanoid.riding"},"render_controllers":["controller.render.vindicator"],"enable_attachables":true,"hide_armor":true}}},"minecraft:vindicator.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:vindicator","materials":{"default":"vindicator"},"textures":{"default":"textures/entity/vindicator"},"geometry":{"default":"geometry.vindicator"},"scripts":{"scale":"0.9375"},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","vindicator_base":"animation.vindicator.base","vindicator_attack":"animation.vindicator.attack","vindicator_walk":"animation.vindicator.walk"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"vindicator_base":"controller.animation.vindicator.base.v1.0"}],"render_controllers":["controller.render.vindicator"],"enable_attachables":true,"hide_armor":true,"spawn_egg":{"texture":"spawn_egg","texture_index":39}}}},"minecraft:wandering_trader":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wandering_trader","materials":{"default":"wandering_trader"},"textures":{"default":"textures/entity/wandering_trader"},"geometry":{"default":"geometry.villager_v2"},"scripts":{"scale":"0.9375"},"animations":{"general":"animation.villager.general","look_at_target":"animation.common.look_at_target","raise_arms":"animation.villager.raise_arms","move":"animation.villager.move"},"animation_controllers":[{"general":"controller.animation.villager.general"},{"raise_arms":"controller.animation.villager_v2.raise_arms"},{"move":"controller.animation.villager.move"}],"render_controllers":["controller.render.wandering_trader"],"spawn_egg":{"texture":"spawn_egg_wandering_trader"}}}},"minecraft:warden":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:warden","materials":{"default":"warden","bioluminescent_layer":"warden_bioluminescent_layer"},"textures":{"default":"textures/entity/warden/warden","bioluminescent_layer":"textures/entity/warden/warden_bioluminescent_layer","spots_1":"textures/entity/warden/warden_pulsating_spots_1","spots_2":"textures/entity/warden/warden_pulsating_spots_2","tendrils":"textures/entity/warden/warden_tendrils","heart":"textures/entity/warden/warden_heart"},"geometry":{"default":"geometry.warden"},"scripts":{"pre_animation":["variable.animation_speed = Math.min(0.5, 3.0 * query.modified_move_speed);","variable.anim_pos_mod = 49.388962;","variable.bob = query.life_time * 20;","variable.modified_bob = variable.bob * 0.1 * 57.2958;","variable.modified_bob_sin = math.sin(variable.modified_bob);","variable.modified_bob_cos = math.cos(variable.modified_bob);","variable.pi = 180;","variable.halfpi = variable.pi / 2.0;","variable.tendril_animation_length = 0.5;","variable.head_x_rot = (68.7549 * math.cos(query.modified_distance_moved * variable.anim_pos_mod + variable.halfpi) * math.min(0.35, variable.animation_speed)) + (math.sin(variable.bob * 5.72958) * 0.06);","variable.head_z_rot = (17.1887 * math.sin(query.modified_distance_moved * variable.anim_pos_mod) * variable.animation_speed) + (Math.cos(variable.bob * 5.72958) * 0.06);","variable.body_x_rot = (57.2958 * math.cos(query.modified_distance_moved * variable.anim_pos_mod) * math.min(0.35, variable.animation_speed)) + (math.cos(variable.bob * 5.72958) * 0.025);","variable.body_z_rot = (5.72958 * math.sin(query.modified_distance_moved * variable.anim_pos_mod) * variable.animation_speed) + (math.sin(variable.bob * 5.72958) * 0.025);","variable.left_leg_x_rot = 57.2958 * math.cos(query.modified_distance_moved * variable.anim_pos_mod) * variable.animation_speed;","variable.right_leg_x_rot = 57.2958 * math.cos(query.modified_distance_moved * variable.anim_pos_mod + variable.pi) * variable.animation_speed;","variable.left_arm_x_rot = -(45.8366 * math.cos(query.modified_distance_moved * variable.anim_pos_mod) * variable.animation_speed);","variable.right_arm_x_rot = -(45.8366 * math.sin(query.modified_distance_moved * variable.anim_pos_mod) * variable.animation_speed);","variable.vibration_phase = query.time_since_last_vibration_detection;","variable.tendril_animation = variable.vibration_phase < 0.0 ? 0.0 : 1.0 - (math.min(query.time_since_last_vibration_detection, variable.tendril_animation_length) / variable.tendril_animation_length);","variable.left_tendril_x_rot = variable.tendril_animation * (math.cos(variable.bob * 128.9155) * variable.pi * 0.1);","variable.right_tendril_x_rot = variable.left_tendril_x_rot * -1;","variable.spots_1_alpha = 0.25 * math.cos(variable.bob * 2.578);","variable.spots_2_alpha = 0.25 * math.cos(variable.bob * 2.578 + 180.0);","variable.tendrils_alpha = variable.tendril_animation;","variable.heart_alpha = 0.8 * (1.0 - query.heartbeat_phase);"],"animate":["base_pose",{"move":"!(query.is_emerging || query.is_digging)"},"shiver_controller","bob",{"emerge":"query.is_emerging"},"sniff_controller",{"dig":"query.is_digging"},"roar_controller",{"look_at_target":"!(query.is_emerging || query.is_digging)"},"melee_attack_controller",{"swimming":"query.swim_amount > 0.0"},"sonic_boom_controller"]},"animations":{"emerge":"animation.warden.emerge","sniff":"animation.warden.sniff","sniff_controller":"controller.animation.warden.sniff","dig":"animation.warden.dig","roar":"animation.warden.roar","roar_controller":"controller.animation.warden.roar","shiver":"animation.warden.shiver","shiver_controller":"controller.animation.warden.shiver","base_pose":"animation.humanoid.base_pose.v1.0","look_at_target":"animation.warden.look_at_target.default","move":"animation.warden.move","melee_attack":"animation.warden.attack","melee_attack_controller":"controller.animation.warden.melee_attacking","bob":"animation.warden.bob","swimming":"animation.humanoid.swimming.v1.0","sonic_boom":"animation.warden.sonic_boom","sonic_boom_controller":"controller.animation.warden.sonic_boom"},"render_controllers":["controller.render.warden","controller.render.warden_bioluminescent_layer","controller.render.warden_spots_1","controller.render.warden_spots_2","controller.render.warden_tendrils","controller.render.warden_heart"],"enable_attachables":true,"spawn_egg":{"base_color":"#0F4649","overlay_color":"#39D6E0"},"sound_effects":{"emerge":"mob.warden.emerge","sniff":"mob.warden.sniff","dig":"mob.warden.dig","roar":"mob.warden.roar","clicking":"mob.warden.clicking"},"particle_effects":{"digging":"minecraft:warden_dig"}}}},"minecraft:witch":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:witch","min_engine_version":"1.8.0","materials":{"default":"witch"},"textures":{"default":"textures/entity/witch"},"geometry":{"default":"geometry.villager.witch.v1.8"},"scripts":{"scale":"0.9375"},"animations":{"villager_general":"animation.villager.general","look_at_target":"animation.common.look_at_target","move":"animation.villager.move","general":"animation.witch.general"},"animation_controllers":[{"general":"controller.animation.witch.general"},{"move":"controller.animation.villager.move"}],"render_controllers":["controller.render.witch"],"spawn_egg":{"texture":"spawn_egg","texture_index":17}}}},"minecraft:witch.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:witch","materials":{"default":"witch"},"textures":{"default":"textures/entity/witch"},"geometry":{"default":"geometry.villager.witch"},"scripts":{"scale":"0.9375"},"animations":{"villager_general":"animation.villager.general.v1.0","look_at_target":"animation.common.look_at_target","move":"animation.villager.move","general":"animation.witch.general"},"animation_controllers":[{"general":"controller.animation.witch.general"},{"move":"controller.animation.villager.move"}],"render_controllers":["controller.render.witch.v1.0"],"spawn_egg":{"texture":"spawn_egg","texture_index":17}}}},"minecraft:wither":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wither","min_engine_version":"1.8.0","materials":{"default":"wither_boss","armor":"wither_boss_armor"},"textures":{"default":"textures/entity/wither_boss/wither","armor_white":"textures/entity/wither_boss/wither_armor_white","armor_blue":"textures/entity/wither_boss/wither_armor_blue","invulnerable":"textures/entity/wither_boss/wither_invulnerable"},"geometry":{"default":"geometry.witherBoss","armor":"geometry.witherBoss.armor.v1.8"},"scripts":{"pre_animation":["variable.base_scale = 2;","variable.swell_clamped = Math.clamp(query.swell_amount, 0.0, 1.0);","variable.wobble = 1.0 + Math.sin(query.swell_amount * 5730) * query.swell_amount * 0.01;","variable.swell_adjustment = Math.pow(variable.swell_clamped, 4);","variable.scale_xz = (1.0 + variable.swell_adjustment * 0.4) * variable.wobble;","variable.scale_y = (1.0 + variable.swell_adjustment * 0.1) / variable.wobble;","variable.body_base_rotation = Math.cos(query.life_time * 114.6);","variable.upper_body_rotation = (0.065 + 0.05 * variable.body_base_rotation) * 180 + query.target_x_rotation;","variable.is_invulnerable = query.invulnerable_ticks > 0.0;","variable.display_normal_skin = (query.invulnerable_ticks <= 0) || ((query.invulnerable_ticks <= 80) && (Math.mod(query.invulnerable_ticks / 5, 2) == 1));"],"scalex":"variable.scale_xz * variable.base_scale","scaley":"variable.scale_y * variable.base_scale","scalez":"variable.scale_xz * variable.base_scale"},"animations":{"scale":"animation.wither_boss.scale","move":"animation.wither_boss.move","look_at_target":"animation.wither_boss.look_at_target"},"animation_controllers":[{"move":"controller.animation.wither_boss.move"}],"render_controllers":["controller.render.wither_boss","controller.render.wither_boss_armor_white","controller.render.wither_boss_armor_blue"]}}},"minecraft:wither.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wither","materials":{"default":"wither_boss","armor":"wither_boss_armor"},"textures":{"default":"textures/entity/wither_boss/wither","armor_white":"textures/entity/wither_boss/wither_armor_white","armor_blue":"textures/entity/wither_boss/wither_armor_blue","invulnerable":"textures/entity/wither_boss/wither_invulnerable"},"geometry":{"default":"geometry.witherBoss","armor":"geometry.witherBoss.armor"},"scripts":{"pre_animation":["variable.base_scale = 2;","variable.swell_clamped = Math.clamp(query.swell_amount, 0.0, 1.0);","variable.wobble = 1.0 + Math.sin(query.swell_amount * 5730) * query.swell_amount * 0.01;","variable.swell_adjustment = Math.pow(variable.swell_clamped, 4);","variable.scale_xz = (1.0 + variable.swell_adjustment * 0.4) * variable.wobble;","variable.scale_y = (1.0 + variable.swell_adjustment * 0.1) / variable.wobble;","variable.body_base_rotation = Math.cos(query.life_time * 114.6);","variable.upper_body_rotation = (0.065 + 0.05 * variable.body_base_rotation) * 180 + query.target_x_rotation;","variable.is_invulnerable = query.invulnerable_ticks > 0.0;","variable.display_normal_skin = (query.invulnerable_ticks <= 0) || ((query.invulnerable_ticks <= 80) && (Math.mod(query.invulnerable_ticks / 5, 2) == 1));"],"scalex":"variable.scale_xz * variable.base_scale","scaley":"variable.scale_y * variable.base_scale","scalez":"variable.scale_xz * variable.base_scale"},"animations":{"scale":"animation.wither_boss.scale","move":"animation.wither_boss.move","look_at_target":"animation.wither_boss.look_at_target"},"animation_controllers":[{"move":"controller.animation.wither_boss.move"}],"render_controllers":["controller.render.wither_boss","controller.render.wither_boss_armor_white","controller.render.wither_boss_armor_blue"]}}},"minecraft:wither_skeleton":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wither_skeleton","min_engine_version":"1.8.0","materials":{"default":"skeleton"},"textures":{"default":"textures/entity/skeleton/wither_skeleton"},"geometry":{"default":"geometry.skeleton.wither.v1.8"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","use_item_progress":"animation.humanoid.use_item_progress","wither_skeleton_attack":"animation.wither_skeleton.attack","swimming":"animation.zombie.swimming"},"animation_controllers":[{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"wither_skeleton_attack":"controller.animation.wither_skeleton.attack"},{"swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.wither_skeleton"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":29}}}},"minecraft:wither_skeleton.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wither_skeleton","materials":{"default":"skeleton"},"textures":{"default":"textures/entity/skeleton/wither_skeleton"},"geometry":{"default":"geometry.skeleton.wither"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","wither_skeleton_attack":"animation.wither_skeleton.attack"},"animation_controllers":[{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"wither_skeleton_attack":"controller.animation.wither_skeleton.attack"}],"render_controllers":["controller.render.wither_skeleton"],"spawn_egg":{"texture":"spawn_egg","texture_index":29}}}},"minecraft:wither_skull":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wither_skull","materials":{"default":"wither_skull"},"textures":{"default":"textures/entity/wither_boss/wither"},"geometry":{"default":"geometry.wither_skull"},"animations":{"move":"animation.wither_skull.move"},"scripts":{"animate":["move"]},"render_controllers":["controller.render.wither_skull"]}}},"minecraft:wither_skull_dangerous":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wither_skull_dangerous","materials":{"default":"wither_skull"},"textures":{"default":"textures/entity/wither_boss/wither_invulnerable"},"geometry":{"default":"geometry.wither_skull"},"animations":{"move":"animation.wither_skull.move"},"scripts":{"animate":["move"]},"render_controllers":["controller.render.wither_skull"]}}},"minecraft:wolf":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:wolf","materials":{"default":"wolf"},"textures":{"default":"textures/entity/wolf/wolf","angry":"textures/entity/wolf/wolf_angry","tame":"textures/entity/wolf/wolf_tame"},"geometry":{"default":"geometry.wolf"},"scripts":{"pre_animation":["variable.body_shake_angle = 0.05 * query.frame_alpha + query.shake_angle;","variable.body_roll_progress = Math.clamp((variable.body_shake_angle - 0.16) / 1.8, 0, 1);","variable.body_rot_z = Math.sin(variable.body_roll_progress * 180) * Math.sin(variable.body_roll_progress * 1980) * 27;","variable.upper_body_roll_progress = Math.clamp((variable.body_shake_angle - 0.08) / 1.8, 0, 1);","variable.upper_body_rot_z = (Math.sin(variable.upper_body_roll_progress * 180) * Math.sin(variable.upper_body_roll_progress * 1980) * 27) - variable.body_rot_z;","variable.tail_roll_progress = Math.clamp((variable.body_shake_angle - 0.2) / 1.8, 0, 1);","variable.tail_rot_z = (Math.sin(variable.tail_roll_progress * 180) * Math.sin(variable.tail_roll_progress * 1980) * 27) - variable.body_rot_z;","variable.head_roll_progress = Math.clamp(variable.body_shake_angle / 1.8, 0, 1);","variable.head_rot_z = (Math.sin(variable.head_roll_progress * 180) * Math.sin(variable.head_roll_progress * 1980) * 27) - variable.body_rot_z;"]},"animations":{"wolf_setup":"animation.wolf.setup","wolf_baby_scaling":"animation.wolf.baby_scaling","wolf_look_at":"animation.common.look_at_target","wolf_head_rot_z":"animation.wolf.head_rot_z","wolf_tail_default":"animation.wolf.tail_default","wolf_angry":"animation.wolf.angry","wolf_sitting":"animation.wolf.sitting","wolf_shaking":"animation.wolf.shaking","wolf_leg_default":"animation.wolf.leg_default"},"animation_controllers":[{"wolf_setup":"controller.animation.wolf.setup"},{"wolf_look_at":"controller.animation.wolf.look_at"},{"wolf_baby_scaling":"controller.animation.wolf.baby_scaling"},{"wolf_head_rot_z":"controller.animation.wolf.head_rot_z"},{"wolf_tail_default":"controller.animation.wolf.tail_default"},{"wolf_angry":"controller.animation.wolf.angry"},{"wolf_sitting":"controller.animation.wolf.sitting"},{"wolf_shaking":"controller.animation.wolf.shaking"}],"render_controllers":["controller.render.wolf"],"spawn_egg":{"texture":"spawn_egg","texture_index":4}}}},"minecraft:zoglin":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zoglin","materials":{"default":"zoglin"},"textures":{"default":"textures/entity/zoglin/zoglin"},"geometry":{"default":"geometry.hoglin"},"spawn_egg":{"base_color":"#c66e55","overlay_color":"#e6e6e6"},"scripts":{"pre_animation":["variable.tcos_right_side = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;","variable.tcos_left_side = -variable.tcos_right_side;","variable.attack_head_rot = Math.sin(variable.attack_time * 180.0) * -37.3;"],"animate":["walk","look_at_target",{"attack":"variable.has_target && variable.attack_time >= 0.0"},{"hoglin_baby_scaling":"query.is_baby"}]},"animations":{"walk":"animation.hoglin.walk","look_at_target":"animation.hoglin.look_at_target","attack":"animation.hoglin.attack","hoglin_baby_scaling":"animation.hoglin.baby_scaling"},"render_controllers":["controller.render.zoglin"]}}},"minecraft:zombie":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie","min_engine_version":"1.8.0","materials":{"default":"zombie"},"textures":{"default":"textures/entity/zombie/zombie"},"geometry":{"default":"geometry.zombie.v1.8"},"spawn_egg":{"texture":"spawn_egg","texture_index":12},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","use_item_progress":"animation.humanoid.use_item_progress","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","swimming":"animation.zombie.swimming"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"},{"swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.zombie"],"enable_attachables":true}}},"minecraft:zombie.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie","materials":{"default":"zombie"},"textures":{"default":"textures/entity/zombie/zombie"},"geometry":{"default":"geometry.zombie"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","zombie_swimming":"animation.zombie.swimming"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"},{"zombie_swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.zombie"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":12}}}},"minecraft:zombie_horse_v1":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_horse","materials":{"default":"horse"},"textures":{"zombie":"textures/entity/horse/horse_zombie","markings_none":"textures/entity/horse/horse_markings_none","armor_none":"textures/entity/horse/armor/horse_armor_none"},"geometry":{"default":"geometry.horse"},"animations":{"setup":"animation.horse.setup","baby_transform":"animation.horse.baby_transform","walk":"animation.horse.walk","eat":"animation.horse.eat","stand":"animation.horse.stand","shake_tail":"animation.horse.shake_tail","mouth":"animation.horse.mouth","look_at_player":"animation.horse.look_at_player"},"scripts":{"initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;","variable.leg_back_origin = query.bone_origin('leg1a');","variable.leg_front_origin = query.bone_origin('leg3a');","variable.head_rotation = query.bone_rotation('head');"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.walk_tail_angle = math.clamp(query.modified_move_speed * 50.0, 0.0, 90.0) * (1.0 - variable.stand_anim);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_walk_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_walk_factor * 45.8 * query.modified_move_speed;","variable.leg_stand = math.cos((query.life_time * 20.0) * 34.38) * variable.stand_anim;","variable.baby_ratio = query.is_baby ? ((0.0625 - query.model_scale) * 16.0) : 0.0;"],"animate":["setup",{"baby_transform":"query.is_baby"},{"walk":"variable.stand_anim < 0.5"},{"stand":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"shake_tail":"variable.shake_tail"},"mouth","look_at_player"]},"render_controllers":["controller.render.zombie_horse.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":33}}}},"minecraft:zombie_horse_v2":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_horse","min_engine_version":"1.2.6","materials":{"default":"horse"},"textures":{"zombie":"textures/entity/horse2/horse_zombie","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v2"},"animations":{"setup":"animation.horse.v2.setup","baby_transform":"animation.horse.v2.baby_transform","walk":"animation.horse.v2.walk","eat":"animation.horse.v2.eat","stand":"animation.horse.v2.stand","tail":"animation.horse.v2.tail"},"scripts":{"initialize":["variable.eat_anim = 0.0;","variable.mouth_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.mouth_anim = math.clamp(variable.mouth_anim + (variable.open_mouth ? ((1.0 - variable.mouth_anim) * 0.7 + 0.05) : -variable.mouth_anim * 0.7 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.base_head_angle = variable.inverse_max_stand_eat * (30.0 + variable.head_x_rot + variable.mouth_anim * math.sin((query.life_time * 20.0 + query.frame_alpha) * 57.3) * 2.86);","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;","variable.leg1a_aabb = query.bone_aabb('leg1a');","variable.y_adjust = query.is_baby ? 0.0 : (variable.leg1a_aabb.max.y - variable.leg1a_aabb.min.y) * (1.0 - (query.model_scale * 16.0));"],"animate":["setup",{"baby_transform":"query.is_baby"},"walk","stand",{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.zombie_horse.v1.and.v2"],"spawn_egg":{"texture":"spawn_egg","texture_index":33}}}},"minecraft:zombie_horse_v3":{"format_version":"1.10.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_horse","min_engine_version":"1.17.10","materials":{"default":"horse"},"textures":{"zombie":"textures/entity/horse2/horse_zombie","markings_none":"textures/entity/horse2/horse_markings_none","armor_none":"textures/entity/horse2/armor/horse_armor_none"},"geometry":{"default":"geometry.horse.v3"},"animations":{"baby_transform":"animation.horse.v3.baby_transform","walk":"animation.horse.v3.walk","eat":"animation.horse.v3.eat","rear":"animation.horse.v3.rear","tail":"animation.horse.v3.tail","look_at_player":"animation.horse.v3.look_at_player"},"scripts":{"initialize":["variable.eat_anim = 0.0;"],"pre_animation":["variable.eat_anim = math.clamp(variable.eat_anim + (query.is_grazing ? ((1.0 - variable.eat_anim) * 0.4 + 0.05) : -variable.eat_anim * 0.4 - 0.05) * query.delta_time * 20.0, 0.0, 1.0);","variable.head_x_rot = query.target_x_rotation + (query.modified_move_speed > 0.2 ? (math.cos(query.modified_distance_moved * 11.46) * 11.46 * query.modified_move_speed + query.modified_move_speed * 11.46) : 0.0);","variable.inverse_max_stand_eat = (1.0 - math.max(variable.stand_anim, variable.eat_anim));","variable.leg_stand_factor = math.cos((query.modified_distance_moved * 38.38) + 180.0);","variable.leg_x_rot_anim = variable.leg_stand_factor * 45.8 * query.modified_move_speed;"],"animate":[{"baby_transform":"query.is_baby"},"walk","look_at_player",{"rear":"variable.stand_anim > 0.0"},{"eat":"!query.is_standing"},{"tail":"variable.shake_tail"}]},"render_controllers":["controller.render.zombie_horse.v3"],"spawn_egg":{"texture":"spawn_egg","texture_index":33}}}},"minecraft:zombie_pigman":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_pigman","min_engine_version":"1.8.0","materials":{"default":"zombie"},"textures":{"default":"textures/entity/piglin/zombie_piglin"},"geometry":{"default":"geometry.piglin"},"spawn_egg":{"texture":"spawn_egg","texture_index":13},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","swimming":"animation.humanoid.swimming","use_item_progress":"animation.humanoid.use_item_progress","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"}],"render_controllers":["controller.render.zombie_pigman"],"enable_attachables":true}}},"minecraft:zombie_pigman.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_pigman","materials":{"default":"zombie"},"textures":{"default":"textures/entity/pig/pigzombie"},"geometry":{"default":"geometry.pigzombie","baby":"geometry.pigzombie.baby"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.humanoid.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"}],"render_controllers":["controller.render.zombie_pigman"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":13}}}},"minecraft:zombie_villager":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_villager","min_engine_version":"1.8.0","materials":{"default":"zombie_villager"},"textures":{"smith":"textures/entity/zombie_villager/zombie_smith","butcher":"textures/entity/zombie_villager/zombie_butcher","librarian":"textures/entity/zombie_villager/zombie_librarian","priest":"textures/entity/zombie_villager/zombie_priest","farmer":"textures/entity/zombie_villager/zombie_farmer"},"geometry":{"default":"geometry.zombie.villager.v1.8"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","use_item_progress":"animation.humanoid.use_item_progress","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","swimming":"animation.zombie.swimming"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"},{"swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.zombie_villager"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":42}}}},"minecraft:zombie_villager.v1.0":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_villager","materials":{"default":"zombie_villager"},"textures":{"smith":"textures/entity/zombie_villager/zombie_smith","butcher":"textures/entity/zombie_villager/zombie_butcher","librarian":"textures/entity/zombie_villager/zombie_librarian","priest":"textures/entity/zombie_villager/zombie_priest","farmer":"textures/entity/zombie_villager/zombie_farmer"},"geometry":{"default":"geometry.zombie.villager"},"scripts":{"pre_animation":["variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose.v1.0","look_at_target_default":"animation.humanoid.look_at_target.default.v1.0","look_at_target_gliding":"animation.humanoid.look_at_target.gliding.v1.0","look_at_target_swimming":"animation.humanoid.look_at_target.swimming.v1.0","move":"animation.humanoid.move.v1.0","riding.arms":"animation.humanoid.riding.arms.v1.0","riding.legs":"animation.humanoid.riding.legs.v1.0","holding":"animation.humanoid.holding.v1.0","brandish_spear":"animation.humanoid.brandish_spear.v1.0","charging":"animation.humanoid.charging.v1.0","attack.rotations":"animation.humanoid.attack.rotations.v1.0","sneaking":"animation.humanoid.sneaking.v1.0","bob":"animation.humanoid.bob.v1.0","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs.v1.0","bow_and_arrow":"animation.humanoid.bow_and_arrow.v1.0","swimming":"animation.humanoid.swimming.v1.0","use_item_progress":"animation.humanoid.use_item_progress.v1.0","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"swimming":"controller.animation.zombie.swimming"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"}],"render_controllers":["controller.render.zombie_villager"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":42}}}},"minecraft:zombie_villager_v2":{"format_version":"1.8.0","minecraft:client_entity":{"description":{"identifier":"minecraft:zombie_villager_v2","materials":{"default":"zombie_villager_v2","masked":"zombie_villager_v2_masked"},"textures":{"default":"textures/entity/zombie_villager2/zombie-villager","desert":"textures/entity/zombie_villager2/biomes/biome-desert-zombie","jungle":"textures/entity/zombie_villager2/biomes/biome-jungle-zombie","plains":"textures/entity/zombie_villager2/biomes/biome-plains-zombie","savanna":"textures/entity/zombie_villager2/biomes/biome-savanna-zombie","snow":"textures/entity/zombie_villager2/biomes/biome-snow-zombie","swamp":"textures/entity/zombie_villager2/biomes/biome-swamp-zombie","taiga":"textures/entity/zombie_villager2/biomes/biome-taiga-zombie","armorer":"textures/entity/zombie_villager2/professions/armorer","butcher":"textures/entity/zombie_villager2/professions/butcher","cartographer":"textures/entity/zombie_villager2/professions/cartographer","cleric":"textures/entity/zombie_villager2/professions/cleric","farmer":"textures/entity/zombie_villager2/professions/farmer","fisherman":"textures/entity/zombie_villager2/professions/fisherman","fletcher":"textures/entity/zombie_villager2/professions/fletcher","leatherworker":"textures/entity/zombie_villager2/professions/leatherworker","librarian":"textures/entity/zombie_villager2/professions/librarian","shepherd":"textures/entity/zombie_villager2/professions/shepherd","tool_smith":"textures/entity/zombie_villager2/professions/toolsmith","weapon_smith":"textures/entity/zombie_villager2/professions/weaponsmith","stonemason":"textures/entity/zombie_villager2/professions/stonemason","nitwit":"textures/entity/zombie_villager2/professions/nitwit"},"geometry":{"default":"geometry.zombie.villager_v2"},"scripts":{"pre_animation":["variable.num_professions = 14;","variable.profession_index = ((query.variant < variable.num_professions) ? query.variant : 0);","variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;"]},"animations":{"humanoid_big_head":"animation.humanoid.big_head","humanoid_base_pose":"animation.humanoid.base_pose","look_at_target_default":"animation.humanoid.look_at_target.default","look_at_target_gliding":"animation.humanoid.look_at_target.gliding","look_at_target_swimming":"animation.humanoid.look_at_target.swimming","move":"animation.humanoid.move","riding.arms":"animation.humanoid.riding.arms","riding.legs":"animation.humanoid.riding.legs","holding":"animation.humanoid.holding","brandish_spear":"animation.humanoid.brandish_spear","charging":"animation.humanoid.charging","attack.rotations":"animation.humanoid.attack.rotations","sneaking":"animation.humanoid.sneaking","bob":"animation.humanoid.bob","damage_nearby_mobs":"animation.humanoid.damage_nearby_mobs","bow_and_arrow":"animation.humanoid.bow_and_arrow","use_item_progress":"animation.humanoid.use_item_progress","zombie_attack_bare_hand":"animation.zombie.attack_bare_hand","swimming":"animation.zombie.swimming"},"animation_controllers":[{"humanoid_baby_big_head":"controller.animation.humanoid.baby_big_head"},{"humanoid_base_pose":"controller.animation.humanoid.base_pose"},{"look_at_target":"controller.animation.humanoid.look_at_target"},{"move":"controller.animation.humanoid.move"},{"riding":"controller.animation.humanoid.riding"},{"holding":"controller.animation.humanoid.holding"},{"brandish_spear":"controller.animation.humanoid.brandish_spear"},{"charging":"controller.animation.humanoid.charging"},{"attack":"controller.animation.humanoid.attack"},{"sneaking":"controller.animation.humanoid.sneaking"},{"bob":"controller.animation.humanoid.bob"},{"damage_nearby_mobs":"controller.animation.humanoid.damage_nearby_mobs"},{"bow_and_arrow":"controller.animation.humanoid.bow_and_arrow"},{"use_item_progress":"controller.animation.humanoid.use_item_progress"},{"zombie_attack_bare_hand":"controller.animation.zombie.attack_bare_hand"},{"swimming":"controller.animation.zombie.swimming"}],"render_controllers":["controller.render.zombie_villager_v2_base","controller.render.zombie_villager_v2_masked"],"enable_attachables":true,"spawn_egg":{"texture":"spawn_egg","texture_index":42}}}}}
|