mr:deep_snail_mob
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| mr:deep_snail_mob [2025/12/25 18:23] – auto lint fix Mikhael | mr:deep_snail_mob [2025/12/27 10:02] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Deep Snail Mob - Code References ====== | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | This mob is implemented in JSON/Lua, no specific Java class exists. | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | * [[https:// | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Code Implementation Details ===== | ||
| + | This mob has the following properties based on the JSON and Lua implementation: | ||
| + | * **HP**: 10 (ht field in JSON) | ||
| + | * **Defense Skill**: 3 (defenseSkill field in JSON) | ||
| + | * **Attack Skill**: 8 (attackSkill field in JSON) | ||
| + | * **Damage Range**: 1-4 (dmgMin and dmgMax fields in JSON) | ||
| + | * **Damage Reduction**: | ||
| + | * **Experience**: | ||
| + | * **Max Level**: 4 (maxLvl field in JSON) | ||
| + | * **Base Speed**: 1 (baseSpeed field in JSON) | ||
| + | * **View Distance**: 3 (viewDistance field in JSON) | ||
| + | * **Loot Chance**: 0 (lootChance field in JSON) | ||
| + | * **Special Abilities**: | ||
| + | * Ooze proc: 20% chance (math.random() < 0.2) to apply Ooze debuff for self's skill level duration to adjacent attacker when hit (defenceProc function in Lua script) | ||
| + | * **Other Properties**: | ||
