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

80 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Electrike",
fr: "Dynavolt",
de: "Frizelbliz"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
309,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sniff Out",
fr: "Flairer",
de: "Rumschnüffeln"
},
effect: {
en: "Put any 1 card from your discard pile into your hand.",
fr: "Placez n'importe quelle carte de votre pile de défausse dans votre main.",
de: "Wähle 1 Karte von deinem Ablagestapel und nimm sie auf deine Hand."
},
},
{
cost: [
"Lightning",
],
name: {
en: "Quick Blow",
fr: "Coup d'poing éclair",
de: "Schnellschlag"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires.",
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 10 Schadenspunkte plus 10 weitere Schadenspunkte zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card