mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-10 07:09:54 +00:00
40 lines
617 B
TypeScript
40 lines
617 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Extradimensional Crisis"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Emolga"
|
|
},
|
|
|
|
illustrator: "Naoki Saito",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Lightning"],
|
|
|
|
description: {
|
|
en: "As Emolga flutters through the air, it crackles\nwith electricity. This Pokémon is cute, but it can\ncause a lot of trouble."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Static Shock"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Lightning"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |