1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

61 lines
916 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Arceus",
fr: "Arceus",
de: "Arceus"
},
illustrator: "Wataru Kawahara",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
493,
],
hp: 80,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Bright Flame",
fr: "Flamme éclatante",
de: "Helle Flamme"
},
effect: {
en: "Flip a coin. If tails, discard 2 Energy attached to Arceus.",
fr: "Lancez une pièce. Si c'est pile, défaussez 2 Énergies attachées à Arceus.",
de: "Wirf 1 Münze. Bei \"Zahl\" entferne 2 Energien, die an Arceus angelegt sind, und lege sie auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card