1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

69 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Grovyle",
fr: "Massko",
},
illustrator: "Ayaka Yoshida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
253,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Treecko",
fr: "Arcko",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Sunshine Grace",
fr: "Grâce Solaire",
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for a Grass Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher un Pokémon Grass dans votre deck, le montrer, puis lajouter à votre main. Mélangez ensuite votre deck.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Slicing Blade",
fr: "Lame Tranchante",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card