1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/035.ts

40 lines
605 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Darumaka"
},
illustrator: "Yuka Morii",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
en: "It derives its power from fire burning inside\nits body. If the fire dwindles, this Pokémon will\nimmediately fall asleep."
},
stage: "Basic",
attacks: [{
name: {
en: "Flop"
},
damage: 30,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card