1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 11:29:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

103
cards/xy/xy6/34.ts Normal file
View File

@ -0,0 +1,103 @@
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: "xy6-34",
localId: 34,
// Card informations
name: {
en: "Gallade-EX",
fr: "Gallame-EX",
},
hp: 170,
type: [
Type.PSYCHIC,
],
dexId: 475,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy6/34/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy6/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy6/34/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy6/34/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 38,
name: "Eske Yoshinob"
},
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Swift Lunge",
fr: "Estocade",
},
text: {
en: "You may have your opponent switch his or her Active Pokémon with 1 of his or her Benched Pokémon.",
fr: "Vous pouvez demander à votre adversaire d'échanger son Pokémon Actif avec l'un de ses Pokémon de Banc.",
},
damage: 30
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Piercing Prizes",
fr: "Percée Récompense",
},
text: {
en: "This attack does 20 more damage for each of your remaining Prize cards.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chacune des cartes Récompense qu'il vous reste.",
},
damage: 50
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Roaring Skies",
code: "xy6"
}
}
export default card