1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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.5 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: "dp3-104",
localId: 104,
// Card informations
name: {
en: "Sentret",
fr: "Fouinette",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 161,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp3/104/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/104/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp3/104/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/104/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Grope",
fr: "À l'aveuglette",
},
text: {
en: "Look at the top 2 cards of your deck, choose 1 of them, and put it into your hand. Put the other card on the bottom of your deck.",
fr: "Regardez les 2 cartes du dessus de votre deck, choisissez-en 1 et placez-la dans votre main. Replacez l'autre carte au dessous de votre deck.",
},
},{
cost: [
Type.COLORLESS
],
name: {
en: "Scratch",
fr: "Griffe",
},
damage: 10
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Secret Wonders",
code: "dp3"
}
}
export default card