1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

76 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 '../Deoxys'
const card: Card = {
name: {
en: "Electrike",
fr: "Dynavolt",
de: "Frizelbliz"
},
illustrator: "Hiroki Fuchino",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
309,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Recharge",
fr: "Recharger",
de: "Recharge"
},
effect: {
en: "Search your deck for a Lightning Energy card and attach it to Electrike. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck 1 carte Énergie et attachez-la à Dynavolt. Ensuite, mélangez votre deck.",
de: "Search your deck for a Energy card and attach it to Electrike. Shuffle your deck afterward."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Quick Attack",
fr: "Vive-attaque",
de: "Quick Attack"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
de: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card