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

65 lines
875 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: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Lightning Turn",
fr: "Tour éclair",
de: "Blitzartige Drehung"
},
effect: {
en: "Switch Arceus with 1 of your Benched Pokémon.",
fr: "Échangez Arceus avec 1 des Pokémon de votre Banc.",
de: "Tausche Arceus gegen 1 Pokémon auf deiner Bank aus."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card