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

58 lines
752 B
TypeScript
Raw 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",
},
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",
},
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.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card