User Tools

Site Tools


mr:wand_holster_item

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
mr:wand_holster_item [2026/04/08 19:57] – Improve 5 random wiki pages: fix mr: namespace pages with accurate code, update string references, and enhance documentation Qwen Assistantmr:wand_holster_item [2026/04/08 20:00] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== mr:wand_holster_item ======
 +
 +Machine-readable reference page for Wand Holster item in Remixed Dungeon.
 +
 +==== Java Implementation ====
 +
 +**Class File:**
 +  * File: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/bags/WandHolster.java|WandHolster.java]]
 +  * Package: com.watabou.pixeldungeon.items.bags
 +  * Extends: Bag
 +  * Entity Kind: WandHolster
 +
 +**Item Properties:**
 +  * Type: Bag/Container
 +  * Image: ItemSpriteSheet.HOLSTER
 +  * Price: 50 gold
 +  * Capacity: Holds up to a configurable number of wands (specified in WandHolster_Info string)
 +
 +==== Code Implementation ====
 +
 +<code java>
 +package com.watabou.pixeldungeon.items.bags;
 +
 +import com.watabou.pixeldungeon.sprites.ItemSpriteSheet;
 +
 +public class WandHolster extends Bag {
 +
 + {
 + image = ItemSpriteSheet.HOLSTER;
 + }
 +
 + @Override
 + public int price() {
 + return 50;
 + }
 +}
 +</code>
 +
 +==== String Resources ====
 +
 +**English (values/strings_all.xml):**
 +  * WandHolster_Name - "wand holster"
 +  * WandHolster_Info - "This slim holder is made of leather of some exotic animal. It allows to compactly carry up to %d wands."
 +
 +**Russian (values-ru/strings_all.xml):**
 +  * WandHolster_Name - Russian item name
 +  * WandHolster_Info - Russian description
 +
 +==== Acquisition ====
 +
 +**Primary Source:**
 +  * Found in dungeon chests
 +  * Available in shops
 +
 +**Alternative Sources:**
 +  * Mod-dependent spawns
 +
 +==== Mechanics ====
 +
 +**Bag Functionality:**
 +  * Extends Bag class for inventory management
 +  * Specifically designed to hold wands
 +  * Capacity defined by configuration (typically specified in the %d format string)
 +
 +**Price:**
 +  * Fixed price of 50 gold when sold
 +  * Uses price() method override
 +
 +==== Related Entities ====
 +
 +**Related Items:**
 +  * [[mr:wand_item|mr:wand_item]] - Wands that can be stored
 +  * [[mr:scroll_holder_item|mr:scroll_holder_item]] - Similar container for scrolls
 +  * [[mr:potion_belt_item|mr:potion_belt_item]] - Similar container for potions
 +
 +==== Wiki Pages ====
 +
 +**English:**
 +  * [[en:rpd:wand_holster_item|Wand Holster]] - Main wiki page
 +
 +**Russian:**
 +  * [[ru:rpd:wand_holster_item|Кобура для жезлов]] - Russian wiki page
 +
 +==== Code References ====
 +
 +  * Item implementation: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/bags/WandHolster.java|WandHolster.java]]
 +  * String resources: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml|strings_all.xml]]
 +
 +{{tag> mr items bag wand_holster reference machine-readable}}
  
mr/wand_holster_item.txt · Last modified: by 127.0.0.1