1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 00:52:08 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

83 lines
1.1 KiB
TypeScript

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: "xyp-XY180",
localId: "XY180",
// Card informations
name: {
en: "Arcanine BREAK",
},
hp: 160,
type: [
Type.FIRE,
],
dexId: 59,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xyp/XY180/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xyp/XY180/high.png",
},
},
evolveFrom: {
en: "Arcanine",
},
tags: [
Tag.BREAK,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Turbo Flame",
},
text: {
en: "Attach 2 basic Energy cards from your discard pile to 1 of your Benched Pokémon.",
},
damage: 80
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "XY Black Star Promos",
code: "xyp"
}
}
export default card