1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

76 lines
1.1 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 '../Delta Species'
const card: Card = {
name: {
en: "Jolteon δ",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 70,
types: [
"Lightning",
"Metal",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Delta Search",
},
effect: {
en: "Search your deck for a Holon Energy card and attach it to Jolteon. Shuffle your deck afterward.",
},
damage: 10,
},
{
cost: [
"Lightning",
"Metal",
"Colorless",
],
name: {
en: "Return Spark",
},
effect: {
en: "You may return an Energy card attached to Jolteon to your hand. If you do, this attack does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card