under_the_ashland_dome/assets/enemies.json
2026-04-04 16:54:28 -04:00

54 lines
1.9 KiB
JSON

{
"PLAYER_TILE": {
"placement": "fixed",
"components": [
{"_type": "Tile", "display": 10733,
"foreground": "enemies/fg:player",
"background": "color:transparent"
},
{"_type": "Combat", "max_hp": 200, "max_ap": 12,
"ap_delta": 6, "damage": 40, "attack_rating": 0.5, "toughness_rating": 0.1,
"body_parts": {
"head": 200,
"chest": 200,
"stomach": 200,
"right_arm": 200,
"left_arm": 200,
"right_leg": 200,
"left_leg": 200
}
},
{"_type": "Motion", "dx": 0, "dy": 0, "random": false},
{"_type": "Collision", "has": true},
{"_type": "EnemyConfig", "ai_script": "Host::actions", "ai_start_name": "Host::initial_state", "ai_goal_name": "Host::final_state"},
{"_type": "Personality", "hearing_distance": 5, "tough": false},
{"_type": "LightSource", "strength": 35, "radius": 2.0},
{"_type": "LearnByDoing", "attacks": 0, "hits": 0, "next_attack_level": 10, "next_toughness_level": 10}
]
},
"SPIDER_BOT": {
"components": [
{"_type": "Tile", "display": 2220,
"foreground": "enemies/fg:rat_giant",
"background": "color:transparent"
},
{"_type": "Combat", "max_hp": 50, "max_ap": 12,
"ap_delta": 6,"damage": 30, "attack_rating": 0.6, "toughness_rating": 0.2,
"body_parts": {
"head": 50,
"chest": 50,
"stomach": 50,
"right_arm": 50,
"left_arm": 50,
"right_leg": 50,
"left_leg": 50
}
},
{"_type": "Collision", "has": true},
{"_type": "Motion", "dx": 0, "dy": 0, "random": false},
{"_type": "EnemyConfig", "ai_script": "Enemy::actions", "ai_start_name": "Enemy::initial_state", "ai_goal_name": "Enemy::final_state"},
{"_type": "Personality", "hearing_distance": 5, "tough": false},
{"_type": "Sprite", "name": "spider_bot", "scale": 1.0}
]
}
}