feat(pet): add Hey Hey chicken pet addon
All checks were successful
Deploy Addons / deploy (push) Successful in 15s

Tameable white chicken modelled on Hey Hey from Moana — custom plump
geometry, waddly walk/peck animations, hatching egg item, and vanilla
chicken sounds. Mounted on all 4 servers via docker-compose.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 09:14:39 +01:00
parent 616395de88
commit 1bdac0e157
21 changed files with 872 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.heyhe_chicken": {
"initial_state": "idle",
"states": {
"idle": {
"animations": ["idle"],
"transitions": [
{ "walking": "query.modified_move_speed > 0.05" },
{ "sitting": "query.property('silverlabs:heyhe_sitting')" }
]
},
"walking": {
"animations": ["walk"],
"transitions": [
{ "idle": "query.modified_move_speed <= 0.05" },
{ "sitting": "query.property('silverlabs:heyhe_sitting')" }
]
},
"sitting": {
"animations": ["sit"],
"transitions": [
{ "idle": "!query.property('silverlabs:heyhe_sitting')" }
]
}
}
}
}
}

View File

@@ -0,0 +1,114 @@
{
"format_version": "1.8.0",
"animations": {
"animation.heyhe_chicken.idle": {
"loop": true,
"animation_length": 2.0,
"bones": {
"body": {
"position": {
"0.0": [0, 0, 0],
"1.0": [0, 0.4, 0],
"2.0": [0, 0, 0]
}
},
"head": {
"rotation": {
"0.0": [0, 0, 0],
"0.4": [10, 0, 0],
"0.8": [0, 0, 0],
"1.4": [10, 0, 0],
"1.8": [0, 0, 0],
"2.0": [0, 0, 0]
}
}
}
},
"animation.heyhe_chicken.walk": {
"loop": true,
"animation_length": 0.8,
"bones": {
"body": {
"rotation": {
"0.0": [0, 0, 4],
"0.2": [0, 0, 0],
"0.4": [0, 0, -4],
"0.6": [0, 0, 0],
"0.8": [0, 0, 4]
}
},
"head": {
"rotation": {
"0.0": [0, 0, -4],
"0.2": [0, 0, 0],
"0.4": [0, 0, 4],
"0.6": [0, 0, 0],
"0.8": [0, 0, -4]
},
"position": {
"0.0": [0, 0, 0.5],
"0.4": [0, 0, -0.5],
"0.8": [0, 0, 0.5]
}
},
"leg_left": {
"rotation": {
"0.0": [ 15, 0, 0],
"0.4": [-15, 0, 0],
"0.8": [ 15, 0, 0]
}
},
"leg_right": {
"rotation": {
"0.0": [-15, 0, 0],
"0.4": [ 15, 0, 0],
"0.8": [-15, 0, 0]
}
}
}
},
"animation.heyhe_chicken.sit": {
"loop": true,
"animation_length": 1.6,
"bones": {
"body": {
"position": {
"0.0": [0, -2.5, 0],
"0.8": [0, -2.5, 0]
},
"rotation": {
"0.0": [5, 0, 0],
"0.8": [5, 0, 0]
}
},
"wing_left": {
"rotation": {
"0.0": [0, 0, -10],
"0.8": [0, 0, -18],
"1.6": [0, 0, -10]
}
},
"wing_right": {
"rotation": {
"0.0": [0, 0, 10],
"0.8": [0, 0, 18],
"1.6": [0, 0, 10]
}
},
"head": {
"rotation": {
"0.0": [ 0, 0, 0],
"0.4": [12, 0, 0],
"0.8": [ 0, 0, 0],
"1.2": [12, 0, 0],
"1.6": [ 0, 0, 0]
}
}
}
}
}
}

View File

@@ -0,0 +1,36 @@
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "silverlabs:heyhe_chicken",
"materials": {
"default": "entity_alphatest"
},
"textures": {
"default": "textures/entity/heyhe_chicken"
},
"geometry": {
"default": "geometry.heyhe_chicken"
},
"render_controllers": [
"controller.render.heyhe_chicken"
],
"animations": {
"idle": "animation.heyhe_chicken.idle",
"walk": "animation.heyhe_chicken.walk",
"sit": "animation.heyhe_chicken.sit",
"controller": "controller.animation.heyhe_chicken"
},
"scripts": {
"animate": ["controller"]
},
"particle_effects": {
"hearts": "minecraft:heart_particle"
},
"spawn_egg": {
"base_color": "#F5F5F0",
"overlay_color": "#E07020"
}
}
}
}

View File

@@ -0,0 +1,20 @@
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "silverlabs:heyhe_egg",
"materials": {
"default": "entity_alphatest"
},
"textures": {
"default": "textures/entity/heyhe_egg"
},
"geometry": {
"default": "geometry.heyhe_egg"
},
"render_controllers": [
"controller.render.heyhe_egg"
]
}
}
}

View File

@@ -0,0 +1,17 @@
{
"format_version": 2,
"header": {
"name": "Hey Hey Chicken Pet Resources",
"description": "Textures, models, and animations for the Hey Hey chicken pet.",
"uuid": "45ec17df-0d84-456f-b2cc-2d990f96e6d5",
"version": [1, 0, 0],
"min_engine_version": [1, 21, 0]
},
"modules": [
{
"type": "resources",
"uuid": "0cba3001-7442-4a69-afa2-27b3dfb763c3",
"version": [1, 0, 0]
}
]
}

View File

@@ -0,0 +1,205 @@
{
"format_version": "1.12.0",
"minecraft:geometry": [
{
"description": {
"identifier": "geometry.heyhe_chicken",
"texture_width": 64,
"texture_height": 32,
"visible_bounds_width": 2,
"visible_bounds_height": 2,
"visible_bounds_offset": [0, 0.75, 0]
},
"bones": [
{
"name": "root",
"pivot": [0, 0, 0]
},
{
"name": "body",
"parent": "root",
"pivot": [0, 7, 0],
"cubes": [
{
"origin": [-5, 3, -4],
"size": [10, 8, 8],
"uv": [0, 0]
}
]
},
{
"name": "wing_left",
"parent": "body",
"pivot": [-5, 9, 0],
"cubes": [
{
"origin": [-7, 6, -2],
"size": [2, 5, 5],
"uv": [24, 0]
}
]
},
{
"name": "wing_right",
"parent": "body",
"pivot": [5, 9, 0],
"mirror": true,
"cubes": [
{
"origin": [5, 6, -2],
"size": [2, 5, 5],
"uv": [24, 0]
}
]
},
{
"name": "tail",
"parent": "body",
"pivot": [0, 11, -4],
"rotation": [-30, 0, 0],
"cubes": [
{
"origin": [-2, 9, -6],
"size": [4, 4, 2],
"uv": [40, 0]
}
]
},
{
"name": "neck",
"parent": "body",
"pivot": [0, 11, 3],
"cubes": [
{
"origin": [-2, 8, 2],
"size": [4, 4, 3],
"uv": [14, 0]
}
]
},
{
"name": "head",
"parent": "neck",
"pivot": [0, 13, 4],
"cubes": [
{
"origin": [-3, 11, 1],
"size": [6, 6, 6],
"uv": [0, 16]
}
]
},
{
"name": "comb_a",
"parent": "head",
"pivot": [0, 17, 4],
"cubes": [
{
"origin": [-1, 17, 2],
"size": [2, 2, 2],
"uv": [30, 16]
}
]
},
{
"name": "comb_b",
"parent": "head",
"pivot": [0, 17, 4],
"cubes": [
{
"origin": [-1, 16, 4],
"size": [2, 3, 2],
"uv": [38, 16]
}
]
},
{
"name": "comb_c",
"parent": "head",
"pivot": [0, 17, 4],
"cubes": [
{
"origin": [-1, 17, 6],
"size": [2, 2, 2],
"uv": [30, 16]
}
]
},
{
"name": "beak",
"parent": "head",
"pivot": [0, 13, 7],
"cubes": [
{
"origin": [-1, 12, 7],
"size": [2, 2, 2],
"uv": [44, 16]
}
]
},
{
"name": "wattle",
"parent": "head",
"pivot": [0, 11, 7],
"cubes": [
{
"origin": [-1, 9, 6],
"size": [2, 2, 1],
"uv": [50, 16]
}
]
},
{
"name": "leg_left",
"parent": "root",
"pivot": [-2, 5, 0],
"cubes": [
{
"origin": [-3, 1, -1],
"size": [2, 4, 2],
"uv": [48, 0]
}
]
},
{
"name": "foot_left",
"parent": "leg_left",
"pivot": [-2, 1, 0],
"cubes": [
{
"origin": [-4, 0, -2],
"size": [4, 1, 4],
"uv": [48, 6]
}
]
},
{
"name": "leg_right",
"parent": "root",
"pivot": [2, 5, 0],
"mirror": true,
"cubes": [
{
"origin": [1, 1, -1],
"size": [2, 4, 2],
"uv": [48, 0]
}
]
},
{
"name": "foot_right",
"parent": "leg_right",
"pivot": [2, 1, 0],
"mirror": true,
"cubes": [
{
"origin": [0, 0, -2],
"size": [4, 1, 4],
"uv": [48, 6]
}
]
}
]
}
]
}

View File

@@ -0,0 +1,28 @@
{
"format_version": "1.12.0",
"minecraft:geometry": [
{
"description": {
"identifier": "geometry.heyhe_egg",
"texture_width": 32,
"texture_height": 16,
"visible_bounds_width": 1,
"visible_bounds_height": 1,
"visible_bounds_offset": [0, 0.3, 0]
},
"bones": [
{
"name": "root",
"pivot": [0, 0, 0],
"cubes": [
{
"origin": [-2.5, 0, -2.5],
"size": [5, 6, 5],
"uv": [0, 0]
}
]
}
]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 971 B

View File

@@ -0,0 +1,15 @@
{
"format_version": "1.8.0",
"render_controllers": {
"controller.render.heyhe_chicken": {
"geometry": "Geometry.default",
"materials": [{ "*": "Material.default" }],
"textures": ["Texture.default"]
},
"controller.render.heyhe_egg": {
"geometry": "Geometry.default",
"materials": [{ "*": "Material.default" }],
"textures": ["Texture.default"]
}
}
}

View File

@@ -0,0 +1,5 @@
entity.silverlabs:heyhe_chicken.name=Hey Hey
entity.silverlabs:heyhe_egg.name=Hey Hey's Egg
item.silverlabs:heyhe_egg.name=Hey Hey's Egg
action.interact.tame=Tame with Food
action.interact.sit=Sit / Stand

Binary file not shown.

After

Width:  |  Height:  |  Size: 305 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

View File

@@ -0,0 +1,9 @@
{
"resource_pack_name": "heyhe_pet_RP",
"texture_name": "atlas.items",
"texture_data": {
"heyhe_egg": {
"textures": "textures/items/heyhe_egg"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B