Files
SysAdmin c176263ec5 feat(monkey): add cheeky banana-throwing monkey addon
New silverlabs:cheeky_monkey mob that wanders the lobby watching players
and throwing harmless (knockback-only) silverlabs:banana_projectile at
them. Drops 1-2 silverlabs:banana (food) on death. Spawn rules target
jungle biomes for future deployment to survival worlds; for now the pack
is bind-mounted into the lobby service only.

Also bundles a stray docker-compose tidy from earlier local work
(Jamie's world seed pinned, pet addons dropped from Jamie).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-20 14:19:18 +01:00

42 lines
1000 B
JSON

{
"format_version": "1.8.0",
"minecraft:spawn_rules": {
"description": {
"identifier": "silverlabs:cheeky_monkey",
"population_control": "animal"
},
"conditions": [
{
"minecraft:spawns_on_surface": {},
"minecraft:brightness_filter": {
"min": 7,
"max": 15,
"adjust_for_weather": false
},
"minecraft:weight": {
"default": 8
},
"minecraft:herd": {
"min_size": 2,
"max_size": 4
},
"minecraft:density_limit": {
"surface": 4
},
"minecraft:biome_filter": {
"any_of": [
{ "test": "has_biome_tag", "value": "jungle" },
{ "test": "has_biome_tag", "value": "bamboo" }
]
},
"minecraft:spawns_on_block_filter": [
"minecraft:grass_block",
"minecraft:dirt",
"minecraft:podzol",
"minecraft:moss_block"
]
}
]
}
}