33 fall safety + suffocation training examples, fall damage test data

Fall safety (25 examples):
- Fall damage math (distance-3 = damage, 23 blocks = lethal)
- Water/slime/hay/cobweb negate or reduce fall damage
- Intent detection: "drop me" = no protection, "tp me up" = add slow_falling
- Height-specific: 4m trivial, 10m hurts, 20m+ needs protection
- Surface awareness: water safe, lava half damage + burn

Suffocation (8 examples):
- TP into solid block = suffocation (1 heart/0.5s)
- Sand/gravel crushing (gravity blocks)
- Obsidian trap, underground tp
- Safety: don't tp into blocks unintentionally

Raw fall damage test results from dev server (noisy but informative)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-20 00:07:36 -04:00
parent 98d035439d
commit d7138b3514
4 changed files with 159 additions and 0 deletions
+93
View File
@@ -0,0 +1,93 @@
[
{
"height": 3,
"hp_before": 20.0,
"hp_after": 19.0,
"damage": 1.0,
"died": false
},
{
"height": 4,
"hp_before": 20.0,
"hp_after": 16.0,
"damage": 4.0,
"died": false
},
{
"height": 5,
"hp_before": 15.3,
"hp_after": 11.3,
"damage": 4.0,
"died": false
},
{
"height": 10,
"hp_before": 10.3,
"hp_after": 11.3,
"damage": -1.0,
"died": false
},
{
"height": 15,
"hp_before": 11.3,
"hp_after": 3.3,
"damage": 8.0,
"died": false
},
{
"height": 20,
"hp_before": 3.3,
"hp_after": 20.0,
"damage": -16.7,
"died": false
},
{
"height": 22,
"hp_before": 20.0,
"hp_after": 14.0,
"damage": 6.0,
"died": false
},
{
"height": 23,
"hp_before": 12.3,
"hp_after": 12.3,
"damage": 0.0,
"died": false
},
{
"height": 24,
"hp_before": 7.3,
"hp_after": 20.0,
"damage": -12.7,
"died": false
},
{
"height": 25,
"hp_before": 20.0,
"hp_after": 11.3,
"damage": 8.7,
"died": false
},
{
"height": 30,
"hp_before": 6.3,
"hp_after": 20.0,
"damage": -13.7,
"died": false
},
{
"height": 40,
"hp_before": 20.0,
"hp_after": 20.0,
"damage": 0.0,
"died": false
},
{
"height": 50,
"hp_before": 20.0,
"hp_after": 20.0,
"damage": 0.0,
"died": false
}
]