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

49 lines
731 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Delcatty"
},
illustrator: "0313",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
evolveFrom: {
en: "Skitty"
},
description: {
en: "It dislikes dirty places. It often searches for a comfortable place in which to groom itself."
},
stage: "Stage1",
attacks: [{
name: {
en: "Energy Assist"
},
damage: 30,
cost: ["Colorless"],
effect: {
en: "Take a Colorless Energy from your Energy Zone and attach it to 1 of your Benched Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card