1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

100 lines
1.9 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Flaaffy",
fr: "Lainergie",
de: "Waaty"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
180,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Mareep",
fr: "Wattouat",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Thunder Spear",
fr: "Lance-éclair",
de: "Donnerspeer"
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 20 damage to that Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez lun des Pokémon de votre adversaire. Cette attaque inflige 20 dégâts à ce Pokémon. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
de: "Wähle 1 Pokémon deines Gegners. Dieser Angriff fügt dem gewählten Pokémon 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thundershock",
fr: "Éclair",
de: "Donnerschock"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Wirf eine Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
description: {
en: "As a result of storing too much electricity, it developed patches where even downy wool wont grow."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card