1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Khaleeq Ahmad 98bc4db193
Fix: Celestial Guardians corrections (#725)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-05-03 22:42:16 +00:00

45 lines
738 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tapu Koko"
},
illustrator: "kirisAki",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
description: {
en: "Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack."
},
stage: "Basic",
attacks: [{
name: {
en: "Volt Switch"
},
damage: 70,
cost: ["Lightning", "Lightning", "Lightning"],
effect: {
en: "Switch this Pokémon with 1 of your Benched Lightning Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card