mr:corpse_dust_item
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| mr:corpse_dust_item [2026/02/23 19:34] – Improve 5 random wiki pages for standards compliance Qwen Assistant | mr:corpse_dust_item [2026/02/23 19:36] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Corpse Dust Item - Code References ====== | ||
| + | |||
| + | {{ rpd: | ||
| + | |||
| + | ==== Java Classes ==== | ||
| + | * **Main Class**: [[https:// | ||
| + | * **Package**: | ||
| + | * **Parent Class**: Artifact | ||
| + | * **Registration**: | ||
| + | |||
| + | ==== Java Class Content ==== | ||
| + | <code java> | ||
| + | package com.watabou.pixeldungeon.items.quest; | ||
| + | |||
| + | import com.nyrds.pixeldungeon.mechanics.buffs.RageBuff; | ||
| + | import com.nyrds.pixeldungeon.ml.R; | ||
| + | import com.nyrds.platform.util.StringsManager; | ||
| + | import com.watabou.pixeldungeon.items.rings.Artifact; | ||
| + | import com.watabou.pixeldungeon.items.rings.ArtifactBuff; | ||
| + | import com.watabou.pixeldungeon.sprites.ItemSpriteSheet; | ||
| + | |||
| + | public class CorpseDust extends Artifact { | ||
| + | |||
| + | public CorpseDust() { | ||
| + | image = ItemSpriteSheet.DUST; | ||
| + | |||
| + | setCursed(true); | ||
| + | setCursedKnown(true); | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public boolean isIdentified() { | ||
| + | return true; | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public ArtifactBuff buff() { | ||
| + | return new RageBuff(); | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public String info() { | ||
| + | return super.info() + " | ||
| + | } | ||
| + | |||
| + | } | ||
| + | </ | ||
| + | |||
| + | ==== Key Properties from Code ==== | ||
| + | * **Type**: Artifact (Quest Item) | ||
| + | * **Image**: ItemSpriteSheet.DUST | ||
| + | * **Cursed**: Yes (setCursed(true)) | ||
| + | * **Cursed Known**: Yes (setCursedKnown(true)) | ||
| + | * **Identified**: | ||
| + | * **Buff**: RageBuff (applied when equipped) | ||
| + | * **Weight**: 1 (default Artifact weight) | ||
| + | |||
| + | ==== JSON Configuration ==== | ||
| + | This entity does not use JSON configuration. | ||
| + | |||
| + | ==== String Resources ==== | ||
| + | <code xml> | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | <string name=" | ||
| + | </ | ||
| + | |||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ==== Lua Scripts ==== | ||
| + | This entity is implemented in Java, no Lua script exists. | ||
| + | |||
| + | ==== Related Code References ==== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ==== Related Entities ==== | ||
| + | * **Rage Buff**: [[mr: | ||
| + | * **English Page**: [[en: | ||
| + | * **Russian Page**: [[ru: | ||
| + | * **Chinese Page**: [[cn: | ||
| + | * **Portuguese Page**: [[pt: | ||
