1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon 5a42df5c5d
Fixed XY informations (#43)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more fixes

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* More updated :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Finished update in English

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Updated XY datas

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:15:14 +00:00

79 lines
1.5 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 '../XY'
const card: Card = {
name: {
en: "Emolga EX",
fr: "Emolga EX",
},
illustrator: "Eske Yoshinob",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
587,
],
hp: 110,
types: [
"Lightning",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Glide",
fr: "Glisse-Énergie",
},
effect: {
en: "Search your deck for a Lightning Energy card and attach it to this Pokémon. Shuffle your deck afterward. If you attached Energy in this way, switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Cherchez une carte Énergie Lightning dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck. Si vous avez attaché de lÉnergie de cette façon, échangez ce Pokémon avec lun de vos Pokémon de Banc.",
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Electron Crush",
fr: "Électron Écrasant",
},
effect: {
en: "You may discard an Energy attached to this Pokémon. If you do, this attack does 30 more damage.",
fr: "Vous pouvez défausser une Énergie attachée à ce Pokémon. Dans ce cas, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0
}
export default card