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

96 lines
1.6 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: "pl3-41",
localId: 41,
// Card informations
name: {
en: "Sableye G",
fr: "Tenefix ",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 302,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/41/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/41/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/41/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/41/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
Tag.SP,
],
illustrator: {
id: 123,
name: "Yusuke Ishikawa"
},
attacks: [{
name: {
en: "Scratch",
fr: "Griffe",
},
damage: 10
},{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Astonish",
fr: "Étonnement",
},
text: {
en: "Choose 1 card from your opponent's hand without looking. Look at that card you chose, then have your opponent shuffle that card into his or her deck.",
fr: "Choisissez sans regarder 1 carte de la main de votre adversaire. Regardez-la, puis demandez à votre adversaire de la mélanger à son deck.",
},
damage: 20
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card