Frozen Carpaccio
Frozen Carpaccio is a food item in Remixed Dungeon that provides a random beneficial effect when consumed.
Description
It's a piece of frozen raw meat. The only way to eat it is by cutting thin slices of it. And this way it's surprisingly good. When eaten, it provides one of four random beneficial effects.
Effects
When consumed, Frozen Carpaccio provides one of four random effects (20% chance each, Random.Int(5)):
Invisibility (case 0): Makes the hero invisible for a duration equal to `Invisibility.DURATION`
Barkskin (case 1): Provides barkskin effect with a level of hero's max HP divided by 4 (`chr.ht() / 4`)
Cleansing (case 2): Removes Poison, Cripple, Weakness, and Bleeding debuffs
Healing (case 3): Heals the hero for HP equal to hero's current HP plus 25% of max HP (`chr.hp() + chr.ht() / 4`)
Acquisition
-
-
Can be obtained by burning
Mystery Meat (via `burn()` method)
Properties
Strategy
Very valuable item due to random but always beneficial effects
Particularly useful for removing negative status effects in dangerous situations
The healing effect can be a life-saver in emergencies (heals for more than full HP)
The invisibility effect can help escape dangerous situations
The barkskin effect provides temporary damage reduction
Technical Details
-
Implementation: Extends the Food base class
Sprite ID: `ItemSpriteSheet.CARPACCIO`
Effect Selection: Uses `Random.Int(5)` to select from 4 possible effects (cases 0-3)
Burn Transformation: Calls `morphTo(MysteryMeat.class)` when burned
Content Verification
Information source: Java Class `com.watabou.pixeldungeon.items.food.FrozenCarpaccio`
Stats verification: Extracted directly from class implementation
Effect descriptions: Based on in-game mechanics and string resources
-
Food - Other edible items in the game
Mystery Meat - Can be transformed into frozen carpaccio by fire
-
-
Ice Caves - Area where this item is commonly found