1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

85 lines
1.2 KiB
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 '../Unseen Forces'
const card: Card = {
name: {
en: "Flaaffy",
fr: "Lainergie",
de: "Waaty"
},
illustrator: "Kyoko Umemoto",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
180,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Mareep",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Thunder Wave",
fr: "Cage-éclair",
de: "Thunder Wave"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder",
fr: "Fatal-foudre",
de: "Thunder"
},
effect: {
en: "Flaaffy does 10 damage to itself.",
fr: "Lainergie s'inflige 10 dégâts.",
de: "Flaaffy does 10 damage to itself."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card