mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
43
data/Pokémon TCG Pocket/Celestial Guardians/226.ts
Normal file
43
data/Pokémon TCG Pocket/Celestial Guardians/226.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Celestial Guardians"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cubone"
|
||||
},
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
rarity: "One Shiny",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "When the memory of its departed mother brings it to tears, its cries echo mournfully within the skull it wears on its head."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Growl"
|
||||
},
|
||||
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, attacks used by the Defending Pokémon do −20 damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user