mr:wand_holster_item
Differences
This shows you the differences between two versions of the page.
| 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 Assistant | mr:wand_holster_item [2026/04/08 20:00] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== mr: | ||
| + | |||
| + | Machine-readable reference page for Wand Holster item in Remixed Dungeon. | ||
| + | |||
| + | ==== Java Implementation ==== | ||
| + | |||
| + | **Class File:** | ||
| + | * File: [[https:// | ||
| + | * Package: com.watabou.pixeldungeon.items.bags | ||
| + | * Extends: Bag | ||
| + | * Entity Kind: WandHolster | ||
| + | |||
| + | **Item Properties: | ||
| + | * Type: Bag/ | ||
| + | * 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; | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ==== String Resources ==== | ||
| + | |||
| + | **English (values/ | ||
| + | * 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/ | ||
| + | * 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: | ||
| + | * [[mr: | ||
| + | * [[mr: | ||
| + | |||
| + | ==== Wiki Pages ==== | ||
| + | |||
| + | **English: | ||
| + | * [[en: | ||
| + | |||
| + | **Russian: | ||
| + | * [[ru: | ||
| + | |||
| + | ==== Code References ==== | ||
| + | |||
| + | * Item implementation: | ||
| + | * String resources: [[https:// | ||
| + | |||
| + | {{tag> mr items bag wand_holster reference machine-readable}} | ||
mr/wand_holster_item.txt · Last modified: by 127.0.0.1
