mr:ring_of_stone_walking_item
Differences
This shows you the differences between two versions of the page.
| mr:ring_of_stone_walking_item [2025/12/19 01:23] – docs: Update crystal_mob.txt with source references and mr: link mike | mr:ring_of_stone_walking_item [2025/12/19 01:23] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Ring of Stone Walking Item - Code References ====== | ||
| + | This page contains raw code references and configuration excerpts for the Ring of Stone Walking item entity. | ||
| + | |||
| + | ==== Entity Kind ==== | ||
| + | * **getEntityKind() value:** StoneWalking | ||
| + | |||
| + | ==== Java Implementation ==== | ||
| + | * **Class location:** [[code: | ||
| + | * **Parent Class:** [[code: | ||
| + | |||
| + | ==== Code Fragments ==== | ||
| + | **Constructor: | ||
| + | <code java> | ||
| + | public class RingOfStoneWalking extends Artifact { | ||
| + | |||
| + | { | ||
| + | name = "Ring of Stone Walking"; | ||
| + | image = ItemSpriteSheet.ARTIFACT_STONEWALKING; | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | **Properties: | ||
| + | <code java> | ||
| + | @Override | ||
| + | protected ArtifactBuff passiveBuff() { | ||
| + | return new StoneWalkingTracker(); | ||
| + | } | ||
| + | |||
| + | @Override | ||
| + | public String desc() { | ||
| + | return Messages.get(this, | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | **Stone Walking Tracker Buff:** | ||
| + | <code java> | ||
| + | public class StoneWalkingTracker extends ArtifactBuff { | ||
| + | // Implementation details for stone walking mechanics | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ==== Configuration ==== | ||
| + | * **Sprite Image:** ItemSpriteSheet.ARTIFACT_STONEWALKING | ||
| + | * **Entity Kind:** StoneWalking | ||
| + | |||
| + | ==== String Resources ==== | ||
| + | * **StoneWalking_Name: | ||
| + | * **StoneWalking_Info: | ||
