1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/089.ts

48 lines
730 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Granbull"
},
illustrator: "Suwama Chiaki",
rarity: "Two Diamond",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
evolveFrom: {
en: "Snubbull"
},
description: {
en: "While it has powerful jaws, it doesn't care for\ndisputes, so it rarely has a chance to display\ntheir might."
},
stage: "Stage1",
attacks: [{
name: {
en: "Wild Tackle"
},
damage: 100,
cost: ["Psychic", "Psychic", "Colorless"],
effect: {
en: "This Pokémon also does 20 damage to itself."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 2
}
export default card