mr:corpse_dust_item
Differences
This shows you the differences between two versions of the page.
| mr:corpse_dust_item [2025/12/24 21:03] – Update Corpse Dust item page with comprehensive code references mike | mr:corpse_dust_item [2025/12/24 21:11] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Corpse Dust Item - Code References ====== | ||
| + | |||
| + | ===== Java Classes ===== | ||
| + | ''< | ||
| + | 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() + " | ||
| + | } | ||
| + | |||
| + | } | ||
| + | ''</ | ||
| + | |||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ===== JSON Configuration ===== | ||
| + | This entity does not use JSON configuration. | ||
| + | |||
| + | ===== String Resources ===== | ||
| + | ''< | ||
| + | <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:// | ||
mr/corpse_dust_item.txt · Last modified: (external edit)
