1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +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

99
cards/xy/xy9/32.ts Normal file
View File

@ -0,0 +1,99 @@
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: "xy9-32",
localId: 32,
// Card informations
name: {
en: "Manaphy-EX",
fr: "Manaphy-EX",
},
hp: 120,
type: [
Type.WATER,
],
dexId: 490,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy9/32/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy9/32/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy9/32/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy9/32/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 38,
name: "Eske Yoshinob"
},
abilities: [{
id: 1428,
type: AbilityType.TALENT,
name: {
en: "Aqua Tube",
fr: "Tube Aqua",
},
text: {
en: "Each of your Pokémon that has any Water Energy attached to it has no Retreat Cost.",
fr: "Chacun de vos Pokémon auquel de l'Énergie Water est attachée n'a pas de Coût de Retraite.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.WATER
],
name: {
en: "Mineral Pump",
fr: "Pompe Minérale",
},
text: {
en: "Heal 30 damage from each of your Benched Pokémon.",
fr: "Soignez 30 dégâts à chacun de vos Pokémon de Banc.",
},
damage: 60
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "BREAKpoint",
code: "xy9"
}
}
export default card