mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
101 lines
1.6 KiB
TypeScript
101 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: "swsh1-126",
|
||
localId: 126,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Thievul",
|
||
fr: "Roublenard",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/126/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/126/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/126/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/126/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Nickit",
|
||
fr: "Goupilou",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "Kouki Saitou"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Thief",
|
||
fr: "Larcin",
|
||
},
|
||
text: {
|
||
en: "Your opponent reveals their hand. Choose a card you find there and put it on the bottom of their deck.",
|
||
fr: "Votre adversaire dévoile sa main. Choisissez-y une carte, puis placez-la en dessous de son deck.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Darkness Fang",
|
||
fr: "Croc Obscur",
|
||
},
|
||
damage: 90
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.GRASS,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|