1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 18:59:53 +00:00

76 lines
1.2 KiB
TypeScript
Raw 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 '../Promo'
const card: Card = {
name: {
en: "Jolteon",
fr: "Voltali",
},
illustrator: "Illus.Direc.The Pokémon Company Art Team",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Electrigun",
fr: "Pistolectrique",
},
effect: {
en: "You may discard a Lightning Energy attached to this Pokémon. If you do, this attack does 40 more damage.",
fr: "Vous pouvez défausser une Énergie Lightning attachée à ce Pokémon. Dans ce cas, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Pin Missile",
fr: "Dard-Nuée",
},
effect: {
en: "Flip 4 coins. This attack does 40 damage times the number of heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card