mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
43 lines
689 B
TypeScript
43 lines
689 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cubone"
|
|
},
|
|
|
|
illustrator: "sowsow",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Growl"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, attacked used by the Defending Pokémon do -20 damage"
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
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.",
|
|
}
|
|
}
|
|
|
|
export default card
|