1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

68 lines
897 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 '../Promos'
const card: Card = {
name: {
en: "Arceus",
},
illustrator: "Naoki Saito",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
493,
],
hp: 130,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Type Switch",
},
effect: {
en: "Choose Grass, Fire, Water, Lightning, Psychic, Fighting, Darkness, Metal, Fairy, or Dragon type. Until the end of your next turn, this Pokémon is that type.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Power Blast",
},
effect: {
en: "Discard an Energy card attached to this Pokémon.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card