1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

81 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Flaaffy",
fr: "Lainergie",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
180,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Mareep",
fr: "Wattouat",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Attract Current",
fr: "Courant électrique",
},
effect: {
en: "Search your deck for a Lightning Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck une carte Énergie Lightning et attachez-la à 1 de vos Pokémon. Ensuite, mélangez votre deck.",
},
damage: 10,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Electromagnetic Kick",
fr: "Coup électromagnétique",
},
effect: {
en: "Flip a coin. If tails, Flaaffy does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Lainergie s'inflige 10 dégâts.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card