1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

91 lines
1.5 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: "dp2-32",
localId: 32,
// Card informations
name: {
en: "Ninetales",
},
hp: 80,
type: [
Type.FIRE,
],
dexId: 38,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp2/32/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp2/32/high",
},
},
evolveFrom: {
en: "Vulpix",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kouki Saitou",
abilities: [{
id: 540,
type: AbilityType.POKEPOWER,
name: {
en: "Color Shift",
},
text: {
en: "Once during your turn (before your attack), you may choose 1 of your opponent's Pokémon. Ninetales is the same type as that Pokémon (all if that Pokémon is more than 1 type) until the end of your turn. This power can't be used if Ninetales is affected by a Special Condition.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "Fire Blast",
},
text: {
en: "Discard a Fire Energy attached to Ninetales.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "+20"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Mysterious Treasures",
code: "dp2"
}
}
export default card