1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

62 lines
1.2 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 '../Call of Legends'
const card: Card = {
name: {
en: "Groudon",
fr: "Groudon",
de: "Groudon"
},
illustrator: "Yuri Umemura",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
383,
],
hp: 100,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Volcano Stomp",
fr: "Écrasement volcanique",
de: "Vulkanstampfer"
},
effect: {
en: "Flip a coin. If heads, discard the top 4 cards of your opponent's deck. If tails, discard the top 4 cards of your deck.",
fr: "Lancez une pièce. Si cest face, défaussez les 4 premières cartes du deck de votre adversaire. Si cest pile, défaussez les 4 premières cartes de votre deck.",
de: "Wirf eine Münze. Bei \"Kopf\" lege die obersten 4 Karten vom Deck deines Gegners auf seinen Ablagestapel. Bei \"Zahl\" lege die obersten 4 Karten von deinem Deck auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card