1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Galarian Darumaka",
fr: "Darumarond de Galar",
es: "Darumaka de Galar",
it: "Darumaka di Galar",
pt: "Darumaka de Galar",
de: "Galar-Flampion"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Water"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "Atsuko Nishida",
description: {
en: "The colder they get, the more energetic they are. They freeze their breath to make snowballs, using them as ammo for playful snowball fights."
},
attacks: [{
cost: ["Water"],
name: {
en: "Reckless Charge"
},
damage: 20,
effect: {
en: "Flip a coin. If tails, this Pokémon also does 10 damage to itself."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card