1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

86 lines
1.7 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "xy9-41",
localId: 41,
// Card informations
name: {
en: "Greninja BREAK",
fr: "Amphinobi TURBO",
},
hp: 170,
type: [
Type.WATER,
],
dexId: 658,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy9/41/low",
fr: "https://assets.tcgdex.net/fr/xy/xy9/41/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy9/41/high",
fr: "https://assets.tcgdex.net/fr/xy/xy9/41/high",
},
},
evolveFrom: {
en: "Greninja",
fr: "Amphinobi",
},
tags: [
Tag.BREAK,
],
illustrator: "5ban Graphics",
abilities: [{
id: 1429,
type: AbilityType.TALENT,
name: {
en: "Giant Water Shuriken",
fr: "Sheauriken Géant",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, you may discard a Water Energy card from your hand. If you do, put 6 damage counters on 1 of your opponent's Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, vous pouvez défausser une carte Énergie Water de votre main. Dans ce cas, placez 6 marqueurs de dégâts sur l'un des Pokémon de votre adversaire.",
}
}],
attacks: [{
name: {
fr: "Règle des Évolutions TURBO",
},
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "BREAKpoint",
code: "xy9"
}
}
export default card