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

90 lines
1.2 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: "bw5-62",
localId: 62,
// Card informations
name: {
en: "Sableye",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 302,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/62/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/62/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Confuse Ray",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 10
},{
cost: [
Type.DARKNESS
],
name: {
en: "Junk Hunt",
},
text: {
en: "Put 2 Item cards from your discard pile into your hand.",
},
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card