User Tools

Site Tools


mr:ring_of_stone_walking_item

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: RingOfStoneWalking.java * Parent Class: Item

Code Fragments

Constructor:

public class RingOfStoneWalking extends Artifact {
 
	{
		name = "Ring of Stone Walking";
		image = ItemSpriteSheet.ARTIFACT_STONEWALKING;
	}

Properties:

@Override
protected ArtifactBuff passiveBuff() {
	return new StoneWalkingTracker();
}
 
@Override
public String desc() {
	return Messages.get(this, "desc");
}

Stone Walking Tracker Buff:

public class StoneWalkingTracker extends ArtifactBuff {
    // Implementation details for stone walking mechanics
}

Configuration

* Sprite Image: ItemSpriteSheet.ARTIFACT_STONEWALKING * Entity Kind: StoneWalking

String Resources

* StoneWalking_Name: Ring of Stone Walking * StoneWalking_Info: A ring that allows the wearer to walk through stone.

mr/ring_of_stone_walking_item.txt · Last modified: by 127.0.0.1