1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

81 lines
1.3 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 '../Ancient Origins'
const card: Card = {
name: {
en: "M Sceptile EX",
fr: "M Jungko-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
254,
],
hp: 220,
types: [
"Grass",
],
evolveFrom: {
en: "Sceptile-EX",
fr: "Jungko-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Jagged Saber",
fr: "Stop Θ",
},
effect: {
en: "You may attach up to 2 Grass Energy cards from your hand to your Benched Pokémon in any way you like. If you attached Energy to a Pokémon in this way, heal all damage from that Pokémon.",
},
damage: 100,
},
{
name: {
fr: "Règle des Méga-Évolutions",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
fr: "Sabre Tranchant",
},
effect: {
fr: "Vous pouvez attacher jusqu'à 2 cartes Énergie Grass de votre main à vos Pokémon de Banc, de la manière que vous voulez. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, soignez tous les dégâts au Pokémon choisi.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card