├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── animation_controllers ├── attachables │ ├── elytra.animation_controllers.json │ ├── shield.animation_controllers.json │ └── trident.animation_controllers.json ├── player.animation_controllers.json ├── player.elytra.animation_controllers.json ├── player.hurt_time.animation_controllers.json ├── player.swim_crawl.animation_controllers.json └── projectile_particle.animation_controllers.json ├── animations ├── actor.animation.json ├── attachables │ ├── bow.animation.json │ ├── crossbow.animation.json │ ├── elytra.animation.json │ ├── shield.animation.json │ ├── spyglass.animation.json │ └── trident.animation.json ├── humanoid.animation.json ├── player.animation.json ├── player.disable_attachables.animation.json ├── player.elytra.animation.json ├── player.emit_hurt_particle.animation.json ├── player.fire.animation.json ├── player.first_person.animation.json ├── player.interpolated_yaw.animation.json ├── player.menu_pose.animation.json ├── player.swim_crawl.animation.json └── projectile.fire.animation.json ├── attachables ├── bow.json ├── chainmail_boots.player.json ├── chainmail_chestplate.player.json ├── chainmail_helmet.player.json ├── chainmail_leggings.player.json ├── crossbow.entity.json ├── diamond_boots.player.json ├── diamond_chestplate.player.json ├── diamond_helmet.player.json ├── diamond_leggings.player.json ├── elytra.json ├── golden_boots.player.json ├── golden_chestplate.player.json ├── golden_helmet.player.json ├── golden_leggings.player.json ├── iron_boots.player.json ├── iron_chestplate.player.json ├── iron_helmet.player.json ├── iron_leggings.player.json ├── leather_boots.player.json ├── leather_chestplate.player.json ├── leather_helmet.player.json ├── leather_leggings.player.json ├── netherite_boots.player.json ├── netherite_chestplate.player.json ├── netherite_helmet.player.json ├── netherite_leggings.player.json ├── shield.entity.json ├── spyglass.entity.json ├── trident.entity.json └── turtle_shell_helmet.player.json ├── entity ├── arrow.entity.json ├── egg.entity.json ├── fireball.entity.json ├── fishing_hook.entity.json └── snowball.entity.json ├── manifest.json ├── materials └── entity.material ├── models └── entity │ ├── attachables │ └── bow.geo.json │ ├── cape_custom.geo.json │ ├── fishing_hook.geo.json │ ├── player_armor_custom.geo.json │ ├── player_elytra_custom.geo.json │ ├── player_fire.geo.json │ └── projectile_fire.geo.json ├── pack_icon.png ├── pack_icon_1024x1024.png ├── particles ├── breaking_item_icon.json └── hurt.particle.json ├── render_controllers ├── armor_custom.render_controllers.json ├── arrow.render_controllers.json ├── cape.render_controllers.json ├── cape_custom.render_controllers.json ├── fishing_hook.render_controllers.json ├── persona.render_controllers.json ├── player.armor.attachable_bones.render_controllers.json ├── player.armor.render_controllers.json ├── player.fire.render_controllers.json ├── player.render_controllers.json └── projectile.fire.render_controllers.json ├── subpacks ├── default │ └── entity │ │ └── player.entity.json ├── eat │ ├── animation_controllers │ │ └── player.animation_controllers.json │ ├── animations │ │ └── humanoid.animation.json │ └── entity │ │ └── player.entity.json ├── narmor │ ├── attachables │ │ ├── chainmail_boots.player.json │ │ ├── chainmail_chestplate.player.json │ │ ├── chainmail_helmet.player.json │ │ ├── chainmail_leggings.player.json │ │ ├── diamond_boots.player.json │ │ ├── diamond_chestplate.player.json │ │ ├── diamond_helmet.player.json │ │ ├── diamond_leggings.player.json │ │ ├── golden_boots.player.json │ │ ├── golden_chestplate.player.json │ │ ├── golden_helmet.player.json │ │ ├── golden_leggings.player.json │ │ ├── iron_boots.player.json │ │ ├── iron_chestplate.player.json │ │ ├── iron_helmet.player.json │ │ ├── iron_leggings.player.json │ │ ├── leather_boots.player.json │ │ ├── leather_chestplate.player.json │ │ ├── leather_helmet.player.json │ │ ├── leather_leggings.player.json │ │ ├── netherite_boots.player.json │ │ ├── netherite_chestplate.player.json │ │ ├── netherite_helmet.player.json │ │ ├── netherite_leggings.player.json │ │ └── turtle_shell_helmet.player.json │ └── entity │ │ └── player.entity.json ├── narmor_eat │ ├── animation_controllers │ │ └── player.animation_controllers.json │ ├── animations │ │ └── humanoid.animation.json │ ├── attachables │ │ ├── chainmail_boots.player.json │ │ ├── chainmail_chestplate.player.json │ │ ├── chainmail_helmet.player.json │ │ ├── chainmail_leggings.player.json │ │ ├── diamond_boots.player.json │ │ ├── diamond_chestplate.player.json │ │ ├── diamond_helmet.player.json │ │ ├── diamond_leggings.player.json │ │ ├── golden_boots.player.json │ │ ├── golden_chestplate.player.json │ │ ├── golden_helmet.player.json │ │ ├── golden_leggings.player.json │ │ ├── iron_boots.player.json │ │ ├── iron_chestplate.player.json │ │ ├── iron_helmet.player.json │ │ ├── iron_leggings.player.json │ │ ├── leather_boots.player.json │ │ ├── leather_chestplate.player.json │ │ ├── leather_helmet.player.json │ │ ├── leather_leggings.player.json │ │ ├── netherite_boots.player.json │ │ ├── netherite_chestplate.player.json │ │ ├── netherite_helmet.player.json │ │ ├── netherite_leggings.player.json │ │ └── turtle_shell_helmet.player.json │ └── entity │ │ └── player.entity.json ├── narmor_npart │ ├── attachables │ │ ├── chainmail_boots.player.json │ │ ├── chainmail_chestplate.player.json │ │ ├── chainmail_helmet.player.json │ │ ├── chainmail_leggings.player.json │ │ ├── diamond_boots.player.json │ │ ├── diamond_chestplate.player.json │ │ ├── diamond_helmet.player.json │ │ ├── diamond_leggings.player.json │ │ ├── golden_boots.player.json │ │ ├── golden_chestplate.player.json │ │ ├── golden_helmet.player.json │ │ ├── golden_leggings.player.json │ │ ├── iron_boots.player.json │ │ ├── iron_chestplate.player.json │ │ ├── iron_helmet.player.json │ │ ├── iron_leggings.player.json │ │ ├── leather_boots.player.json │ │ ├── leather_chestplate.player.json │ │ ├── leather_helmet.player.json │ │ ├── leather_leggings.player.json │ │ ├── netherite_boots.player.json │ │ ├── netherite_chestplate.player.json │ │ ├── netherite_helmet.player.json │ │ ├── netherite_leggings.player.json │ │ └── turtle_shell_helmet.player.json │ └── entity │ │ ├── egg.entity.json │ │ ├── fishing_hook.entity.json │ │ ├── player.entity.json │ │ └── snowball.entity.json ├── narmor_npart_eat │ ├── animation_controllers │ │ └── player.animation_controllers.json │ ├── animations │ │ └── humanoid.animation.json │ ├── attachables │ │ ├── chainmail_boots.player.json │ │ ├── chainmail_chestplate.player.json │ │ ├── chainmail_helmet.player.json │ │ ├── chainmail_leggings.player.json │ │ ├── diamond_boots.player.json │ │ ├── diamond_chestplate.player.json │ │ ├── diamond_helmet.player.json │ │ ├── diamond_leggings.player.json │ │ ├── golden_boots.player.json │ │ ├── golden_chestplate.player.json │ │ ├── golden_helmet.player.json │ │ ├── golden_leggings.player.json │ │ ├── iron_boots.player.json │ │ ├── iron_chestplate.player.json │ │ ├── iron_helmet.player.json │ │ ├── iron_leggings.player.json │ │ ├── leather_boots.player.json │ │ ├── leather_chestplate.player.json │ │ ├── leather_helmet.player.json │ │ ├── leather_leggings.player.json │ │ ├── netherite_boots.player.json │ │ ├── netherite_chestplate.player.json │ │ ├── netherite_helmet.player.json │ │ ├── netherite_leggings.player.json │ │ └── turtle_shell_helmet.player.json │ └── entity │ │ ├── egg.entity.json │ │ ├── fishing_hook.entity.json │ │ ├── player.entity.json │ │ └── snowball.entity.json ├── narmor_red_npart_eat │ ├── animation_controllers │ │ └── player.animation_controllers.json │ ├── animations │ │ └── humanoid.animation.json │ ├── attachables │ │ ├── chainmail_boots.player.json │ │ ├── chainmail_chestplate.player.json │ │ ├── chainmail_helmet.player.json │ │ ├── chainmail_leggings.player.json │ │ ├── diamond_boots.player.json │ │ ├── diamond_chestplate.player.json │ │ ├── diamond_helmet.player.json │ │ ├── diamond_leggings.player.json │ │ ├── golden_boots.player.json │ │ ├── golden_chestplate.player.json │ │ ├── golden_helmet.player.json │ │ ├── golden_leggings.player.json │ │ ├── iron_boots.player.json │ │ ├── iron_chestplate.player.json │ │ ├── iron_helmet.player.json │ │ ├── iron_leggings.player.json │ │ ├── leather_boots.player.json │ │ ├── leather_chestplate.player.json │ │ ├── leather_helmet.player.json │ │ ├── leather_leggings.player.json │ │ ├── netherite_boots.player.json │ │ ├── netherite_chestplate.player.json │ │ ├── netherite_helmet.player.json │ │ ├── netherite_leggings.player.json │ │ └── turtle_shell_helmet.player.json │ ├── entity │ │ ├── egg.entity.json │ │ ├── fishing_hook.entity.json │ │ ├── player.entity.json │ │ └── snowball.entity.json │ └── render_controllers │ │ ├── persona.render_controllers.json │ │ ├── player.armor.render_controllers.json │ │ └── player.render_controllers.json ├── npart │ └── entity │ │ ├── egg.entity.json │ │ ├── fishing_hook.entity.json │ │ ├── player.entity.json │ │ └── snowball.entity.json ├── red │ ├── entity │ │ └── player.entity.json │ └── render_controllers │ │ ├── persona.render_controllers.json │ │ ├── player.armor.render_controllers.json │ │ └── player.render_controllers.json ├── red_eat │ ├── animation_controllers │ │ └── player.animation_controllers.json │ ├── animations │ │ └── humanoid.animation.json │ ├── entity │ │ └── player.entity.json │ └── render_controllers │ │ ├── persona.render_controllers.json │ │ ├── player.armor.render_controllers.json │ │ └── player.render_controllers.json ├── red_npart │ ├── entity │ │ ├── egg.entity.json │ │ ├── fishing_hook.entity.json │ │ ├── player.entity.json │ │ └── snowball.entity.json │ └── render_controllers │ │ ├── persona.render_controllers.json │ │ ├── player.armor.render_controllers.json │ │ └── player.render_controllers.json └── red_npart_eat │ ├── animation_controllers │ └── player.animation_controllers.json │ ├── animations │ └── humanoid.animation.json │ ├── entity │ ├── egg.entity.json │ ├── fishing_hook.entity.json │ ├── player.entity.json │ └── snowball.entity.json │ └── render_controllers │ ├── persona.render_controllers.json │ ├── player.armor.render_controllers.json │ └── player.render_controllers.json └── ui ├── hud_screen.json ├── pause_screen.json ├── start_screen.json └── ui_common.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | ### You ARE Allowed to: 2 | - Use this pack for personal/private purposes 3 | - Make private modifications to this pack 4 | - Showcase this pack in media such as YouTube, assuming you credit me properly, as well as link my [YouTube channel](https://www.youtube.com/@ambiennt) 5 | 6 | ### You Are NOT Allowed to: 7 | - Modify this pack and distribute it publicly 8 | - Distribute an unmodified version of this pack publicly (that means NO reuploading on 3rd party sites) 9 | - Directly use the code of this pack in your own content without explicit permission from me 10 | - Showcase this pack in a video without following the proper criteria aligned [above](#you-are-allowed-to) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Java1.7Animations 2 | This resource pack attempts to faithfully port over many player animations from Minecraft Java Edition v1.7 to Minecraft Bedrock Edition. Contributions are welcome in the form of pull requests! Please submit a detailed issue if you have a bug report. 3 | 4 | ### About Licensing: 5 | This repository only exists for educational purposes, to aggregate bug reports, and solicit meaningful and quality contributions. If I could distribute an encrypted version of this pack on my own, I would, since theft is rampant in the MCBE mod and pack community. But that isn't possible without a lot of work. Hence, it doesn't seem harmful to "open source" this project. See [LICENSE](LICENSE) for exact terms of use. -------------------------------------------------------------------------------- /animation_controllers/attachables/elytra.animation_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version" : "1.10.0", 4 | "animation_controllers": { 5 | "controller.animation.elytra.default": { 6 | "initial_state": "default", 7 | "states": { 8 | "default": { 9 | "animations": [ 10 | "default", 11 | "gliding", 12 | "sneaking" 13 | ] 14 | } 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /animation_controllers/attachables/trident.animation_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animation_controllers": { 5 | "controller.animation.trident.wield": { 6 | "initial_state": "first_person", 7 | "states": { 8 | "first_person": { 9 | "animations": [ 10 | "wield_first_person", 11 | { "wield_first_person_raise": "q.main_hand_item_use_duration > 0.0f" }, 12 | { "wield_first_person_riptide": "q.can_damage_nearby_mobs" } // enchanted with riptide 13 | ], 14 | "transitions": [ 15 | { "third_person": "!c.is_first_person" } 16 | ] 17 | }, 18 | "third_person": { 19 | "animations": [ 20 | "wield_third_person", 21 | { "wield_third_person_raise": "q.main_hand_item_use_duration > 0.0f" } 22 | ], 23 | "transitions": [ 24 | { "first_person": "c.is_first_person" } 25 | ] 26 | } 27 | } 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /animation_controllers/player.elytra.animation_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version" : "1.10.0", 4 | "animation_controllers": { 5 | "controller.animation.player.elytra": { 6 | "initial_state": "default", 7 | "states": { 8 | "default": { 9 | "animations": [ 10 | "elytra_default", 11 | "elytra_gliding", 12 | "elytra_sneaking" 13 | ] 14 | } 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /animation_controllers/projectile_particle.animation_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animation_controllers": { 5 | "controller.animation.projectile_particle": { 6 | "initial_state": "default", 7 | "states": { 8 | "default": { 9 | "on_entry":[ 10 | "variable.life_time = query.life_time;" 11 | ], 12 | "transitions": [ 13 | // math.mod(query.life_time, 0.05) <= 0.0 14 | { "emit": "(query.life_time - variable.life_time >= 0.05)" } 15 | ] 16 | }, 17 | "emit": { 18 | "particle_effects": [ 19 | { 20 | "effect": "basic_crit", 21 | "pre_effect_script": "variable.direction.x = math.random(-0.04, 0.04); variable.direction.y = math.random(-0.04, 0.04); variable.direction.z = 0.0;" 22 | } 23 | ], 24 | "transitions": [ 25 | { "default": "1.0" } 26 | ] 27 | } 28 | } 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /animations/actor.animation.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animations": { 5 | "animation.actor.billboard": { 6 | "loop": true, 7 | "bones": { 8 | "body": { 9 | "rotation": [ "query.camera_rotation(0)", "query.camera_rotation(1)", 0.0 ], 10 | "scale": "1.0 / (query.model_scale * 32.0)" // scale by 1/2 11 | } 12 | } 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /animations/humanoid.animation.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animations": { 5 | "animation.humanoid.base_pose": { 6 | "loop": true, 7 | "bones": { 8 | "leftarm": { 9 | "relative_to": { 10 | "rotation": "entity" 11 | } 12 | }, 13 | "rightarm": { 14 | "relative_to": { 15 | "rotation": "entity" 16 | } 17 | }, 18 | "waist": { 19 | "rotation": [ 0.0, 0.0, "v.is_upside_down = 0.0;" ] 20 | }, 21 | 22 | "leftarm_custom": { 23 | "relative_to": { 24 | "rotation": "entity" 25 | } 26 | }, 27 | "rightarm_custom": { 28 | "relative_to": { 29 | "rotation": "entity" 30 | } 31 | } 32 | } 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /animations/player.emit_hurt_particle.animation.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animations": { 5 | "animation.player.emit_hurt_particle": { 6 | "loop": false, 7 | "animation_length": 0.1, 8 | "particle_effects": { 9 | "0.0": { 10 | "effect": "hurt" 11 | } 12 | } 13 | } 14 | } 15 | } 16 | // this particle is emitted from a dedicated animation as opposed 17 | // to an animation controller because emitting particles directly 18 | // from animation controllers has a slight delay -------------------------------------------------------------------------------- /animations/player.interpolated_yaw.animation.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animations": { 5 | "animation.player.interpolated_yaw": { 6 | "loop": true, 7 | "bones": { 8 | "head": { 9 | "rotation": [ 10 | 0, 11 | "v.relative_head_yaw = math.mod(v.new_head_yaw - q.head_y_rotation(0) + 900, 360) - 180; v.new_relative_head_yaw = math.clamp(v.relative_head_yaw * math.exp(-v.delta_time * 30 * (v.yaw_fix * 30 + 1)), -120, 120); v.new_head_yaw = v.new_relative_head_yaw + q.head_y_rotation(0); return v.new_head_yaw - q.body_y_rotation - this;", 12 | 0 13 | ] 14 | } 15 | } 16 | } 17 | } 18 | } 19 | // v.yaw_fix is needed because head rotation returns 0 in 3rd person, so the interpolation must be 20 | // counteracted to prevent head snaps from 0 to the current roation when changing from 1st to 3rd person and vice versa -------------------------------------------------------------------------------- /animations/player.menu_pose.animation.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animations": { 5 | "animation.player.menu_pose": { 6 | "loop": true, 7 | "bones": { 8 | "leftarm": { 9 | "rotation": [ 0, 0, -6 ] 10 | }, 11 | "rightarm": { 12 | "rotation": [ 0, 0, 6 ] 13 | }, 14 | 15 | // these transformations probably aren't needed, since those bones are irrelevant in the menu. but best to have them to be safe 16 | "leftarm_custom": { 17 | "rotation": [ 0, 0, -6 ] 18 | }, 19 | "rightarm_custom": { 20 | "rotation": [ 0, 0, 6 ] 21 | } 22 | } 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /animations/projectile.fire.animation.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "animations": { 5 | "animation.projectile.fire": { 6 | "loop": true, 7 | "bones": { 8 | "fire_root": { 9 | "rotation": [ 0.0, "query.camera_rotation(1) - 180.0f", 0.0 ] 10 | }, 11 | "fire_1": { 12 | "position": [ 0.0, 0.0, -2.0 ], 13 | "scale": [ 0.5, 0.85, 0.5 ] 14 | }, 15 | "fire_2": { 16 | "position": [ 0.0, 3.6, -2.25 ], 17 | "scale": [ 0.4, 0.75, 0.4 ] 18 | } 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /attachables/chainmail_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_boots.player", 7 | "item": { "minecraft:chainmail_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.boots": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/chainmail_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_chestplate.player", 7 | "item": { "minecraft:chainmail_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.chestplate": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/chainmail_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_helmet.player", 7 | "item": { "minecraft:chainmail_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/chainmail_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_leggings.player", 7 | "item": { "minecraft:chainmail_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.leggings": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/diamond_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_boots.player", 7 | "item": { "minecraft:diamond_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.boots": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/diamond_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_chestplate.player", 7 | "item": { "minecraft:diamond_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.chestplate": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/diamond_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_helmet.player", 7 | "item": { "minecraft:diamond_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/diamond_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_leggings.player", 7 | "item": { "minecraft:diamond_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.leggings": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/golden_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_boots.player", 7 | "item": { "minecraft:golden_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.boots": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/golden_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_chestplate.player", 7 | "item": { "minecraft:golden_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.chestplate": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/golden_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_helmet.player", 7 | "item": { "minecraft:golden_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/golden_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_leggings.player", 7 | "item": { "minecraft:golden_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.leggings": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/iron_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_boots.player", 7 | "item": { "minecraft:iron_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.boots": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/iron_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_chestplate.player", 7 | "item": { "minecraft:iron_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.chestplate": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/iron_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_helmet.player", 7 | "item": { "minecraft:iron_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/iron_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_leggings.player", 7 | "item": { "minecraft:iron_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.leggings": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/leather_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_boots.player", 7 | "item": { "minecraft:leather_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.boots": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/leather_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_chestplate.player", 7 | "item": { "minecraft:leather_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.chestplate": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/leather_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_helmet.player", 7 | "item": { "minecraft:leather_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/leather_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_leggings.player", 7 | "item": { "minecraft:leather_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.leggings": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/netherite_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_boots.player", 7 | "item": { "minecraft:netherite_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.boots": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/netherite_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_chestplate.player", 7 | "item": { "minecraft:netherite_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.chestplate": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/netherite_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_helmet.player", 7 | "item": { "minecraft:netherite_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/netherite_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_leggings.player", 7 | "item": { "minecraft:netherite_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.leggings": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /attachables/spyglass.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:spyglass", 7 | "materials": { 8 | "default": "entity_alphatest", 9 | "enchanted": "entity_alphatest_glint" 10 | }, 11 | "textures": { 12 | "default": "textures/entity/spyglass", 13 | "enchanted": "textures/misc/enchanted_item_glint" 14 | }, 15 | "geometry": { 16 | "default": "geometry.spyglass" 17 | }, 18 | "animations": { 19 | "holding": "animation.spyglass.holding", 20 | "scoping": "animation.spyglass.scoping" 21 | }, 22 | "scripts": { 23 | "animate": [ 24 | { "holding": "q.main_hand_item_use_duration <= 0.0" }, 25 | { "scoping": "(q.main_hand_item_use_duration > 0.0) && !c.is_first_person" } 26 | ] 27 | }, 28 | "render_controllers": [ "controller.render.item_default" ] 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /attachables/turtle_shell_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:turtle_helmet.player", 7 | "item": { "minecraft:turtle_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/turtle_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | { "controller.render.armor": "q.is_emoting" }, 25 | { "controller.render.armor.helmet": "!q.is_emoting" } 26 | ] 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying", 29 | { "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /entity/fireball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:fireball", 7 | "materials": { 8 | "default": "fireball", 9 | "ambient_uv": "ambient_uv" 10 | }, 11 | "textures": { 12 | "default": "textures/items/fireball", 13 | "fire": "textures/blocks/fire_0" 14 | }, 15 | "geometry": { 16 | "default": "geometry.fireball", 17 | "fire": "geometry.projectile_fire" 18 | }, 19 | "animations": { 20 | "face_player": "animation.actor.billboard", 21 | "fire": "animation.projectile.fire" 22 | }, 23 | "scripts": { 24 | "scale": "2.0", 25 | "animate": [ 26 | "face_player", 27 | { "fire": "query.is_on_fire" } 28 | ] 29 | }, 30 | "render_controllers": [ 31 | "controller.render.fireball", 32 | { "controller.render.projectile.fire": "query.is_on_fire" } 33 | ] 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying", 29 | { "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /materials/entity.material: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "materials": { 4 | "version": "1.0.0", 5 | 6 | "ambient_uv:entity_alphatest": { 7 | "+defines": [ 8 | "USE_UV_ANIM" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /models/entity/fishing_hook.geo.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.12.0", 4 | "minecraft:geometry": [ 5 | { 6 | "description": { 7 | "identifier": "geometry.fishing_hook", 8 | "texture_width": 128, 9 | "texture_height": 128, 10 | "visible_bounds_width": 2, 11 | "visible_bounds_height": 1.5, 12 | "visible_bounds_offset": [0, 0.25, 0] 13 | }, 14 | "bones": [ 15 | { 16 | "name": "body", 17 | "pivot": [0, 0, 0], 18 | "cubes": [ 19 | { 20 | "origin": [-4, -4, 0], 21 | "size": [8, 8, 0], 22 | "pivot": [0, 0, 0], 23 | "rotation": [0, 180, 0], 24 | "uv": { 25 | "north": {"uv": [8, 16], "uv_size": [8, 8]} 26 | } 27 | } 28 | ] 29 | } 30 | ] 31 | } 32 | ] 33 | } -------------------------------------------------------------------------------- /pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/Java1.7Animations/da5d11d21b0e08be5029db5b433ce837a3b1a8fb/pack_icon.png -------------------------------------------------------------------------------- /pack_icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiennt/Java1.7Animations/da5d11d21b0e08be5029db5b433ce837a3b1a8fb/pack_icon_1024x1024.png -------------------------------------------------------------------------------- /render_controllers/arrow.render_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "render_controllers": { 5 | "controller.render.arrow": { 6 | "geometry": "geometry.default", 7 | "materials": [ { "*": "material.default" } ], 8 | "textures": [ "texture.default" ], 9 | "is_hurt_color": {}, 10 | "on_fire_color": {} 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /render_controllers/cape.render_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "render_controllers": { 5 | "controller.render.player.cape": { 6 | "rebuild_animation_matrices": true, 7 | "geometry": "Geometry.cape", 8 | "materials": [ { "*": "Material.cape" } ], 9 | "textures": [ "Texture.cape" ], 10 | "part_visibility": [ 11 | //{ "cape": "query.armor_texture_slot(1) != 5 && (!variable.is_first_person || variable.is_paperdoll) && !variable.map_face_icon && !query.is_spectator" } 12 | { "*": false } 13 | ], 14 | "is_hurt_color": { 15 | "r": 0.0, 16 | "g": 0.0, 17 | "b": 0.0, 18 | "a": 0.0 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /render_controllers/cape_custom.render_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "render_controllers": { 5 | "controller.render.player.cape_custom": { 6 | // because emotes have hardcoded animations so we need to parent to the body bone to inherit animations 7 | "geometry": "q.is_emoting ? geometry.cape_emote_fix : geometry.cape", 8 | "materials": [ { "*": "material.default" } ], 9 | "textures": [ "texture.cape" ], 10 | "part_visibility": [ 11 | { "cape": "q.is_emoting && (q.armor_texture_slot(1) != 5)" }, 12 | { "cape_custom": "!q.is_emoting && (q.armor_texture_slot(1) != 5)" } 13 | ], 14 | "is_hurt_color":{}, 15 | "on_fire_color":{} 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /render_controllers/fishing_hook.render_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "render_controllers": { 5 | "controller.render.fishing_hook": { 6 | "geometry": "geometry.default", 7 | "materials": [ { "*": "material.default" } ], 8 | "textures": [ "texture.default" ], 9 | "is_hurt_color":{}, 10 | "on_fire_color":{} 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /render_controllers/player.fire.render_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "render_controllers": { 5 | "controller.render.player.fire": { 6 | "geometry": "geometry.player_fire", 7 | "materials": [ { "*": "material.ambient_uv" } ], 8 | "textures": [ "texture.fire" ], 9 | "uv_anim": { 10 | // BUG: texture packs that overwrite textures/blocks/fire_0 and make the texture more than 32 "flipbooks" will flicker 11 | "offset": [ 0.0, "math.mod(math.floor(query.life_time * 20), 32) / 32" ], // show first 20 frames in 1 second 12 | "scale": [ 1.0, 1.0 ] 13 | }, 14 | "is_hurt_color": {}, 15 | "on_fire_color": {}, 16 | "light_color_multiplier": 1.35, 17 | "ignore_lighting": true 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /render_controllers/projectile.fire.render_controllers.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "render_controllers": { 5 | "controller.render.projectile.fire": { 6 | "geometry": "geometry.fire", 7 | "materials": [ { "*": "material.ambient_uv" } ], 8 | "textures": [ "texture.fire" ], 9 | "uv_anim": { 10 | // BUG: texture packs that overwrite textures/blocks/fire_0 and make the texture more than 32 "flipbooks" will flicker 11 | "offset": [ 0.0, "math.mod(math.floor(query.life_time * 20), 32) / 32" ], // show first 20 frames in 1 second 12 | "scale": [ 1.0, 1.0 ] 13 | }, 14 | "is_hurt_color": {}, 15 | "on_fire_color": {}, 16 | "light_color_multiplier": 1.35, 17 | "ignore_lighting": true 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /subpacks/narmor/attachables/chainmail_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_boots.player", 7 | "item": { "minecraft:chainmail_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/chainmail_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_chestplate.player", 7 | "item": { "minecraft:chainmail_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/chainmail_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_helmet.player", 7 | "item": { "minecraft:chainmail_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/chainmail_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_leggings.player", 7 | "item": { "minecraft:chainmail_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/diamond_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_boots.player", 7 | "item": { "minecraft:diamond_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/diamond_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_chestplate.player", 7 | "item": { "minecraft:diamond_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/diamond_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_helmet.player", 7 | "item": { "minecraft:diamond_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/diamond_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_leggings.player", 7 | "item": { "minecraft:diamond_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/golden_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_boots.player", 7 | "item": { "minecraft:golden_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/golden_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_chestplate.player", 7 | "item": { "minecraft:golden_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/golden_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_helmet.player", 7 | "item": { "minecraft:golden_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/golden_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_leggings.player", 7 | "item": { "minecraft:golden_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/iron_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_boots.player", 7 | "item": { "minecraft:iron_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/iron_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_chestplate.player", 7 | "item": { "minecraft:iron_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/iron_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_helmet.player", 7 | "item": { "minecraft:iron_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/iron_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_leggings.player", 7 | "item": { "minecraft:iron_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/leather_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_boots.player", 7 | "item": { "minecraft:leather_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/leather_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_chestplate.player", 7 | "item": { "minecraft:leather_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/leather_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_helmet.player", 7 | "item": { "minecraft:leather_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/leather_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_leggings.player", 7 | "item": { "minecraft:leather_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/netherite_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_boots.player", 7 | "item": { "minecraft:netherite_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/netherite_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_chestplate.player", 7 | "item": { "minecraft:netherite_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/netherite_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_helmet.player", 7 | "item": { "minecraft:netherite_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/netherite_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_leggings.player", 7 | "item": { "minecraft:netherite_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor/attachables/turtle_shell_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:turtle_helmet.player", 7 | "item": { "minecraft:turtle_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/turtle_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/chainmail_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_boots.player", 7 | "item": { "minecraft:chainmail_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/chainmail_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_chestplate.player", 7 | "item": { "minecraft:chainmail_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/chainmail_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_helmet.player", 7 | "item": { "minecraft:chainmail_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/chainmail_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_leggings.player", 7 | "item": { "minecraft:chainmail_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/diamond_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_boots.player", 7 | "item": { "minecraft:diamond_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/diamond_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_chestplate.player", 7 | "item": { "minecraft:diamond_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/diamond_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_helmet.player", 7 | "item": { "minecraft:diamond_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/diamond_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_leggings.player", 7 | "item": { "minecraft:diamond_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/golden_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_boots.player", 7 | "item": { "minecraft:golden_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/golden_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_chestplate.player", 7 | "item": { "minecraft:golden_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/golden_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_helmet.player", 7 | "item": { "minecraft:golden_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/golden_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_leggings.player", 7 | "item": { "minecraft:golden_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/iron_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_boots.player", 7 | "item": { "minecraft:iron_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/iron_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_chestplate.player", 7 | "item": { "minecraft:iron_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/iron_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_helmet.player", 7 | "item": { "minecraft:iron_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/iron_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_leggings.player", 7 | "item": { "minecraft:iron_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/leather_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_boots.player", 7 | "item": { "minecraft:leather_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/leather_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_chestplate.player", 7 | "item": { "minecraft:leather_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/leather_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_helmet.player", 7 | "item": { "minecraft:leather_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/leather_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_leggings.player", 7 | "item": { "minecraft:leather_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/netherite_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_boots.player", 7 | "item": { "minecraft:netherite_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/netherite_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_chestplate.player", 7 | "item": { "minecraft:netherite_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/netherite_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_helmet.player", 7 | "item": { "minecraft:netherite_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/netherite_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_leggings.player", 7 | "item": { "minecraft:netherite_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_eat/attachables/turtle_shell_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:turtle_helmet.player", 7 | "item": { "minecraft:turtle_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/turtle_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/chainmail_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_boots.player", 7 | "item": { "minecraft:chainmail_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/chainmail_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_chestplate.player", 7 | "item": { "minecraft:chainmail_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/chainmail_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_helmet.player", 7 | "item": { "minecraft:chainmail_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/chainmail_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_leggings.player", 7 | "item": { "minecraft:chainmail_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/diamond_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_boots.player", 7 | "item": { "minecraft:diamond_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/diamond_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_chestplate.player", 7 | "item": { "minecraft:diamond_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/diamond_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_helmet.player", 7 | "item": { "minecraft:diamond_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/diamond_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_leggings.player", 7 | "item": { "minecraft:diamond_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/golden_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_boots.player", 7 | "item": { "minecraft:golden_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/golden_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_chestplate.player", 7 | "item": { "minecraft:golden_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/golden_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_helmet.player", 7 | "item": { "minecraft:golden_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/golden_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_leggings.player", 7 | "item": { "minecraft:golden_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/iron_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_boots.player", 7 | "item": { "minecraft:iron_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/iron_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_chestplate.player", 7 | "item": { "minecraft:iron_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/iron_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_helmet.player", 7 | "item": { "minecraft:iron_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/iron_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_leggings.player", 7 | "item": { "minecraft:iron_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/leather_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_boots.player", 7 | "item": { "minecraft:leather_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/leather_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_helmet.player", 7 | "item": { "minecraft:leather_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/leather_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_leggings.player", 7 | "item": { "minecraft:leather_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/netherite_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_boots.player", 7 | "item": { "minecraft:netherite_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/netherite_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_chestplate.player", 7 | "item": { "minecraft:netherite_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/netherite_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_helmet.player", 7 | "item": { "minecraft:netherite_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/netherite_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_leggings.player", 7 | "item": { "minecraft:netherite_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/attachables/turtle_shell_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:turtle_helmet.player", 7 | "item": { "minecraft:turtle_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/turtle_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart/entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/narmor_npart/entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/chainmail_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_boots.player", 7 | "item": { "minecraft:chainmail_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/chainmail_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_chestplate.player", 7 | "item": { "minecraft:chainmail_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/chainmail_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_helmet.player", 7 | "item": { "minecraft:chainmail_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/chainmail_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_leggings.player", 7 | "item": { "minecraft:chainmail_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/diamond_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_boots.player", 7 | "item": { "minecraft:diamond_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/diamond_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_chestplate.player", 7 | "item": { "minecraft:diamond_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/diamond_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_helmet.player", 7 | "item": { "minecraft:diamond_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/diamond_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_leggings.player", 7 | "item": { "minecraft:diamond_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/golden_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_boots.player", 7 | "item": { "minecraft:golden_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/golden_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_chestplate.player", 7 | "item": { "minecraft:golden_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/golden_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_helmet.player", 7 | "item": { "minecraft:golden_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/golden_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_leggings.player", 7 | "item": { "minecraft:golden_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/iron_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_boots.player", 7 | "item": { "minecraft:iron_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/iron_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_chestplate.player", 7 | "item": { "minecraft:iron_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/iron_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_helmet.player", 7 | "item": { "minecraft:iron_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/iron_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_leggings.player", 7 | "item": { "minecraft:iron_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/leather_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_boots.player", 7 | "item": { "minecraft:leather_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/leather_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_helmet.player", 7 | "item": { "minecraft:leather_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/netherite_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_boots.player", 7 | "item": { "minecraft:netherite_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/netherite_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_chestplate.player", 7 | "item": { "minecraft:netherite_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/netherite_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_helmet.player", 7 | "item": { "minecraft:netherite_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/netherite_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_leggings.player", 7 | "item": { "minecraft:netherite_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/attachables/turtle_shell_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:turtle_helmet.player", 7 | "item": { "minecraft:turtle_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/turtle_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/narmor_npart_eat/entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/chainmail_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_boots.player", 7 | "item": { "minecraft:chainmail_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/chainmail_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_helmet.player", 7 | "item": { "minecraft:chainmail_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/chainmail_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:chainmail_leggings.player", 7 | "item": { "minecraft:chainmail_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/chain_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/diamond_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_boots.player", 7 | "item": { "minecraft:diamond_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/diamond_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_chestplate.player", 7 | "item": { "minecraft:diamond_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/diamond_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_helmet.player", 7 | "item": { "minecraft:diamond_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/diamond_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:diamond_leggings.player", 7 | "item": { "minecraft:diamond_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/diamond_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/golden_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_boots.player", 7 | "item": { "minecraft:golden_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/golden_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_chestplate.player", 7 | "item": { "minecraft:golden_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/golden_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_helmet.player", 7 | "item": { "minecraft:golden_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/golden_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:golden_leggings.player", 7 | "item": { "minecraft:golden_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/gold_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/iron_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_boots.player", 7 | "item": { "minecraft:iron_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/iron_chestplate.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_chestplate.player", 7 | "item": { "minecraft:iron_chestplate": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.chestplate", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.chest_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.chestplate": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/iron_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_helmet.player", 7 | "item": { "minecraft:iron_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/iron_leggings.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:iron_leggings.player", 7 | "item": { "minecraft:iron_leggings": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/iron_2", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.leggings", 18 | "default_custom": "geometry.player_armor_leggings_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.leg_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.leggings": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/leather_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_boots.player", 7 | "item": { "minecraft:leather_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/leather_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:leather_helmet.player", 7 | "item": { "minecraft:leather_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor_leather", 10 | "enchanted": "armor_leather_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/leather_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/netherite_boots.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_boots.player", 7 | "item": { "minecraft:netherite_boots": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.boots", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.boot_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.boots": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/netherite_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:netherite_helmet.player", 7 | "item": { "minecraft:netherite_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/netherite_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/attachables/turtle_shell_helmet.player.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:attachable": { 5 | "description": { 6 | "identifier": "minecraft:turtle_helmet.player", 7 | "item": { "minecraft:turtle_helmet": "q.is_owner_identifier_any('minecraft:player')" }, 8 | "materials": { 9 | "default": "armor", 10 | "enchanted": "armor_enchanted" 11 | }, 12 | "textures": { 13 | "default": "textures/models/armor/turtle_1", 14 | "enchanted": "textures/misc/enchanted_actor_glint" 15 | }, 16 | "geometry": { 17 | "default": "geometry.player.armor.helmet", 18 | "default_custom": "geometry.player_armor_custom" 19 | }, 20 | "scripts": { 21 | "parent_setup": "v.helmet_layer_visible = 0.0;" 22 | }, 23 | "render_controllers": [ 24 | //{ "controller.render.armor": "q.is_emoting" }, 25 | //{ "controller.render.armor.helmet": "!q.is_emoting" } 26 | "controller.render.armor" 27 | ] 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/narmor_red_npart_eat/entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/npart/entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/npart/entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/red_npart/entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/red_npart/entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/red_npart_eat/entity/egg.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:egg", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/egg" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /subpacks/red_npart_eat/entity/snowball.entity.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "format_version": "1.10.0", 4 | "minecraft:client_entity": { 5 | "description": { 6 | "identifier": "minecraft:snowball", 7 | "materials": { 8 | "default": "entity_alphatest" 9 | }, 10 | "textures": { 11 | "default": "textures/items/snowball" 12 | }, 13 | "geometry": { 14 | "default": "geometry.item_sprite" 15 | }, 16 | "animations": { 17 | "flying": "animation.actor.billboard", 18 | "particle": "controller.animation.projectile_particle" 19 | }, 20 | "particle_effects":{ 21 | "basic_crit": "minecraft:basic_crit_particle" 22 | }, 23 | "scripts": { 24 | "initialize":[ 25 | "variable.life_time = 0.0;" 26 | ], 27 | "animate": [ 28 | "flying" 29 | //{ "particle": "query.is_moving" } // query.modified_move_speed >= 0.01 30 | ] 31 | }, 32 | "render_controllers": [ "controller.render.item_sprite" ] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /ui/hud_screen.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "vignette_renderer": { 4 | "ignored": true 5 | } 6 | } -------------------------------------------------------------------------------- /ui/pause_screen.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "skin_viewer_panel/paper_doll_panel/paper_doll": { 4 | "camera_tilt_degrees": 0, 5 | "starting_rotation": 0 6 | } 7 | } -------------------------------------------------------------------------------- /ui/start_screen.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "skin_viewer_panel/paper_doll_panel/paper_doll": { 4 | "camera_tilt_degrees": 0, 5 | "starting_rotation": 0 6 | } 7 | } -------------------------------------------------------------------------------- /ui/ui_common.json: -------------------------------------------------------------------------------- 1 | // This file was modified by ambient (ambiennt on discord). Do not use or redistribute this file or its contents without explicit permission from the author. 2 | { 3 | "item_renderer": { 4 | "modifications": [ 5 | { 6 | "array_name": "bindings", 7 | "operation": "remove", 8 | "where": { 9 | "binding_name": "#item_pickup_time" 10 | } 11 | }, 12 | { 13 | "array_name": "bindings", 14 | "operation": "remove", 15 | "where": { 16 | "binding_name": "#fade_in_icon_time_seconds" 17 | } 18 | } 19 | ] 20 | }, 21 | "flying_item_renderer": { 22 | "ignored": true 23 | }, 24 | "highlight_slot_panel/white_border": { 25 | "ignored": true 26 | } 27 | } --------------------------------------------------------------------------------