mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
48
data/Pokémon TCG Pocket/Celestial Guardians/130.ts
Normal file
48
data/Pokémon TCG Pocket/Celestial Guardians/130.ts
Normal file
@ -0,0 +1,48 @@
|
||||
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 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
|
Reference in New Issue
Block a user