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

73 lines
953 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Kalos Starter Set'
const card: Card = {
name: {
en: "Frogadier",
fr: "Croâporal",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
657,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Froakie",
fr: "Grenousse",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Water Drip",
fr: "Goutte à Goutte",
},
damage: 20,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Aqua Wave",
fr: "Aqua-Vague",
},
effect: {
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card