User Tools

Site Tools


en:rpd:order_spell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:rpd:order_spell [2026/01/02 06:41] – Update references to renamed wiki pages (enemies.txt -> enemies_overview.txt, spells.txt -> spells_overview.txt) mikeen:rpd:order_spell [2026/03/13 04:50] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Order ======
 +
 +{{ rpd:images:order_spell.png|Order Spell }}
 +
 +**Order** is a spell in Remixed Dungeon (Witchcraft Affinity).
 +
 +==== Description ====
 +With proper concentration, your orders are almost undeniable. This spell allows you to issue commands to target characters through the ML (Machine Learning) action system.
 +
 +==== Stats ====
 +  * **Magic Affinity:** Witchcraft
 +  * **Targeting:** Character-based commands
 +  * **Spell Type:** Command/Control
 +
 +==== Effect ====
 +When cast, this spell issues orders to the targeted character through the Order action system. The spell uses Java-based ML actions for implementation.
 +
 +==== Restrictions ====
 +  * Cannot be cast on yourself
 +  * Targets may resist with Order_Resist message
 +  * Requires proper concentration for orders to be effective
 +
 +==== Classes ====
 +Classes that can use this spell include:
 +  * [[en:rpd:priest_class|Priest class]] (spells: Heal, Calm, Charm, Order)
 +  * Classes with Witchcraft affinity (spells: Roar, LightningBolt, Heal, Order)
 +
 +==== Strategy ====
 +How to effectively use the Order spell:
 +  * Best used on weaker enemies to influence their behavior
 +  * Most effective when combined with other control spells
 +  * Be aware that targets may resist the effect
 +
 +==== Content Verification ====
 +  * Information source: Java ML Actions in Remixed Dungeon codebase
 +  * Stats verified: Yes, extracted from Order.java and related classes
 +  * Effect descriptions: Generated from code analysis and string resources
 +
 +==== Source Code ====
 +This page content is based on the Java classes:
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/ml/actions/Order.java|Order.java]] - Order action implementation
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/ml/actions/OrderCellSelector.java|OrderCellSelector.java]] - Cell selector for targeting
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/ai/MoveOrder.java|MoveOrder.java]] - Move order AI behavior
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/ai/KillOrder.java|KillOrder.java]] - Kill order AI behavior
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/mechanics/CommonActions.java|CommonActions.java]] - Common actions including Order
 +
 +==== String Resources ====
 +<code xml>
 +<!-- English (values/strings_all.xml lines 2700-2701) -->
 +<string name="Order_Name">Order</string>
 +<string name="Order_Info">With proper concentration, your orders are almost undeniable.</string>
 +
 +<!-- Russian (values-ru/strings_all.xml lines 1468-1469) -->
 +<string name="Order_Name">Приказ</string>
 +<string name="Order_Info">При должной концентрации твои приказы почти неоспоримы.</string>
 +</code>
 +
 +==== See Also ====
 +  * [[en:rpd:spells_overview|Spells]]
 +  * [[en:rpd:witchcraft_affinity|Witchcraft Affinity]]
 +  * [[en:rpd:priest_class|Priest Class]]
 +  * [[mr:order_spell|Order (mr: namespace)]]
 +
 +==== Notes ====
 +The spell is implemented through Java ML actions rather than Lua scripts. Targets may resist with the message "How dare you?!!" as defined in string resources.
 +
 +{{tag> rpd spells witchcraft }}