1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

84 lines
960 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 4'
const card: Card = {
name: {
en: "Grovyle",
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
253,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Treecko",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Quick Attack",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
},
damage: "10+",
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Blot",
},
effect: {
en: "Remove 2 damage counters from Grovyle.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card