Bring in a spider enemy.

This commit is contained in:
Zed A. Shaw 2025-02-17 14:34:50 -05:00
parent deb235dbc5
commit 615599084a
3 changed files with 14 additions and 1 deletions

View file

@ -49,5 +49,17 @@
{"_type": "EnemyConfig", "hearing_distance": 10},
{"_type": "Sprite", "name": "rat_with_sword"}
]
},
"SPIDER_GIANT_HAIRY": {
"components": [
{"_type": "Tile", "display": "\u08ea",
"foreground": [205, 164, 246],
"background": [30, 20, 75]
},
{"_type": "Combat", "hp": 20, "max_hp": 20, "damage": 20, "dead": false},
{"_type": "Motion", "dx": 0, "dy": 0, "random": false},
{"_type": "EnemyConfig", "hearing_distance": 10},
{"_type": "Sprite", "name": "hairy_spider"}
]
}
}