1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

106
cards/xy/xy11/111.ts Normal file
View File

@ -0,0 +1,106 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "xy11-111",
localId: 111,
// Card informations
name: {
en: "Gardevoir-EX",
fr: "Gardevoir-EX",
},
hp: 170,
type: [
Type.FAIRY,
],
dexId: 282,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy11/111/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/111/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy11/111/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/111/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.FAIRY,
Type.COLORLESS
],
name: {
en: "Link Blast",
fr: "Explosion en Série",
},
text: {
en: "If this Pokémon and your opponent's Active Pokémon have the same amount of Energy attached to them, this attack does 70 more damage.",
fr: "Si ce Pokémon et le Pokémon Actif de votre adversaire ont le même nombre dÉnergies attachées, cette attaque inflige 70 dégâts supplémentaires.",
},
damage: 30
},{
cost: [
Type.FAIRY,
Type.FAIRY,
Type.COLORLESS
],
name: {
en: "Luminous Blade",
fr: "Lame Lumineuse",
},
text: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 120
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
resistances: [{
type: Type.DARKNESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Steam Siege",
code: "xy11"
}
}
export default card