mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
76 lines
1.3 KiB
TypeScript
76 lines
1.3 KiB
TypeScript
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
|