1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 22:09: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/xy10/116.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: "xy10-116",
localId: 116,
// Card informations
name: {
en: "Glaceon-EX",
fr: "Givrali-EX",
},
hp: 170,
type: [
Type.WATER,
],
dexId: 471,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/116/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/116/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/116/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/116/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Second Bite",
fr: "Double Morsure",
},
text: {
en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur le Pokémon Actif de votre adversaire.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Crystal Ray",
fr: "Rayon de Cristal",
},
text: {
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Evolution Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon Évolutifs.",
},
damage: 70
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card