mr:ring_of_stone_walking_item
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| mr:ring_of_stone_walking_item [2025/12/19 23:54] – Update various pages with enhanced source code references and documentation mike | mr:ring_of_stone_walking_item [2025/12/19 23:55] (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:** [[https:// | ||
| + | * **Parent Class:** [[https:// | ||
| + | |||
| + | ==== 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: | ||
mr/ring_of_stone_walking_item.txt · Last modified: by 127.0.0.1
