mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
65 lines
902 B
TypeScript
65 lines
902 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Arceus'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Arceus",
|
||
fr: "Arceus",
|
||
de: "Arceus"
|
||
},
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
493,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Leaf Refresh",
|
||
fr: "Feuille revigorante",
|
||
de: "Blätterheilung"
|
||
},
|
||
effect: {
|
||
en: "Remove 3 damage counters from each of your Benched Pokémon.",
|
||
fr: "Retirez 3 marqueurs de dégât à chacun des Pokémon de votre Banc.",
|
||
de: "Entferne 3 Schadensmarken von jedem Pokémon auf deiner Bank."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Water",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|