mr:magic_arrow_spell
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:magic_arrow_spell [2026/04/11 01:02] – Fix wiki standards compliance issues in randomly selected pages Qwen Assistant | mr:magic_arrow_spell [2026/04/11 01:03] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Magic Arrow Spell - Code References ====== | ||
| + | |||
| + | {{ rpd: | ||
| + | |||
| + | **Magic Arrow** is a spell in Remixed Dungeon described as "Good old magic arrow, the right choice when you run out of ammo." This is an Elf affinity spell available to Elf class heroes. | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | * Spell system integration: | ||
| + | * Hero initialization: | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | <code xml> | ||
| + | <!-- English (values/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Russian (values-ru/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Spanish (values-es/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Portuguese (Brazilian) (values-pt-rBR/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- French (values-fr/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- German (values-de/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Chinese (Simplified) (values-zh-rCN/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Chinese (Traditional) (values-zh-rTW/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Japanese (values-ja/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Korean (values-ko/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Italian (values-it/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Polish (values-pl/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Ukrainian (values-uk/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Hungarian (values-hu/ | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Turkish (values-tr/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Greek (values-el/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Indonesian (values-in/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | |||
| + | <!-- Malay (values-ms/ | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | * Main implementation: | ||
| + | * Spell list registration: | ||
| + | |||
| + | ===== Spell Configuration (from Lua Script) ===== | ||
| + | * **Magic Affinity**: Elf | ||
| + | * **Targeting Type**: char_not_self (targets other characters) | ||
| + | * **Level**: 1 | ||
| + | * **Mana Cost**: 5 (spellCost) | ||
| + | * **Cast Time**: 0.1 turns | ||
| + | * **Cooldown**: | ||
| + | * **Image File**: spellsIcons/ | ||
| + | * **Effect**: Deals random damage between 1 and caster' | ||
| + | * **Visual Effect**: Magic arrow zap effect from caster to victim | ||
| + | |||
| + | ===== Implementation Details ===== | ||
| + | * **Location**: | ||
| + | * **Dependencies**: | ||
| + | * **Spell Type**: Ranged damage spell (arrow-based) | ||
| + | * **Damage Formula**: math.random(1, | ||
| + | * **Zap Effect**: Uses " | ||
| + | |||
| + | ===== Related mr Entities ===== | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
mr/magic_arrow_spell.txt · Last modified: by 127.0.0.1
