mr:ring_of_evasion_item
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:ring_of_evasion_item [2026/03/21 21:23] – Wiki standards compliance: Enhance mr: namespace pages with images and entity usage analysis Qwen Assistant | mr:ring_of_evasion_item [2026/03/21 21:28] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Ring Of Evasion Item - Code References ====== | ||
| + | |||
| + | {{ rpd: | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== Full Java Class Content ===== | ||
| + | <code java> | ||
| + | package com.watabou.pixeldungeon.items.rings; | ||
| + | |||
| + | import com.nyrds.pixeldungeon.ml.R; | ||
| + | import com.nyrds.platform.util.StringsManager; | ||
| + | import com.watabou.pixeldungeon.actors.Char; | ||
| + | |||
| + | public class RingOfEvasion extends Ring { | ||
| + | |||
| + | @Override | ||
| + | public | ||
| + | return new Evasion(); | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public String desc() { | ||
| + | return isKnown() ? StringsManager.getVar(R.string.RingOfEvasion_Info) : super.desc(); | ||
| + | } | ||
| + | |||
| + | public class Evasion extends RingBuff { | ||
| + | @Override | ||
| + | public int defenceSkillBonus(Char chr) { | ||
| + | return level(); | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | This entity does not appear to have JSON configuration | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | ===== Lua Scripts ===== | ||
| + | This entity is implemented in Java, no Lua script exists | ||
| + | |||
| + | ===== Entity Usage Analysis ===== | ||
| + | Using find_entity_usage.py: | ||
| + | * Java file: ./ | ||
| + | * Java file: ./ | ||
| + | * Java file: ./ | ||
| + | * Java file: ./ | ||
| + | * String resources: RingOfEvasion_Name, | ||
| + | * No Lua file usage (Java-based item) | ||
| + | * No JSON configuration (Java-based item) | ||
| + | |||
| + | ===== Related mr Entities ===== | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
mr/ring_of_evasion_item.txt · Last modified: by 127.0.0.1
