You now have blood on your screen when below half health.
This commit is contained in:
parent
1c8f542c21
commit
d2700d2928
12 changed files with 90 additions and 13 deletions
BIN
assets/blood_splatter-256.png
Normal file
BIN
assets/blood_splatter-256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
|
@ -16,7 +16,8 @@
|
|||
"rope_vines_up": "assets/rope_vines_up-256.png",
|
||||
"tripwire_trap": "assets/tripwire_trap-256.png",
|
||||
"cinqueda": "assets/cinqueda_1-256.png",
|
||||
"left_gui": "assets/left_gui.png"
|
||||
"left_gui": "assets/left_gui.png",
|
||||
"blood_splatter": "assets/blood_splatter-256.png"
|
||||
},
|
||||
"enemy": {
|
||||
"HEARING_DISTANCE": 20
|
||||
|
@ -24,7 +25,7 @@
|
|||
"player": {
|
||||
},
|
||||
"worldgen": {
|
||||
"enemy_probability": 20,
|
||||
"enemy_probability": 80,
|
||||
"empty_room_probability": 10,
|
||||
"device_probability": 30
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"foreground": [255, 200, 125],
|
||||
"background": [30, 20, 75]
|
||||
},
|
||||
{"_type": "Combat", "hp": 200, "damage": 15, "dead": false},
|
||||
{"_type": "Combat", "hp": 200, "max_hp": 200, "damage": 15, "dead": false},
|
||||
{"_type": "Motion", "dx": 0, "dy": 0, "random": false},
|
||||
{"_type": "LightSource", "strength": 60, "radius": 1.8},
|
||||
{"_type": "EnemyConfig", "hearing_distance": 5},
|
||||
|
@ -19,7 +19,7 @@
|
|||
"foreground": [131, 213, 238],
|
||||
"background": [30, 20, 75]
|
||||
},
|
||||
{"_type": "Combat", "hp": 20, "damage": 1, "dead": false},
|
||||
{"_type": "Combat", "hp": 20, "max_hp": 20, "damage": 1, "dead": false},
|
||||
{"_type": "Motion", "dx": 0, "dy": 0, "random": false},
|
||||
{"_type": "LightSource", "strength": 40, "radius": 1.2},
|
||||
{"_type": "EnemyConfig", "hearing_distance": 5},
|
||||
|
@ -32,7 +32,7 @@
|
|||
"foreground": [205, 164, 246],
|
||||
"background": [30, 20, 75]
|
||||
},
|
||||
{"_type": "Combat", "hp": 50, "damage": 10, "dead": false},
|
||||
{"_type": "Combat", "hp": 50, "max_hp": 20, "damage": 50, "dead": false},
|
||||
{"_type": "Motion", "dx": 0, "dy": 0, "random": false},
|
||||
{"_type": "EnemyConfig", "hearing_distance": 10},
|
||||
{"_type": "Sprite", "name": "evil_eye"}
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
"foreground": [255, 205, 189],
|
||||
"background": [255, 205, 189]
|
||||
},
|
||||
{"_type": "Curative", "hp": 20},
|
||||
{"_type": "Curative", "hp": 200},
|
||||
{"_type": "Sprite", "name": "healing_potion_small"}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue