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

95 lines
1.4 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: "pl1-91",
localId: 91,
// Card informations
name: {
en: "Riolu",
fr: "Riolu",
},
hp: 60,
type: [
Type.FIGHTING,
],
dexId: 447,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/91/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/91/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/91/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/91/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
name: {
en: "Light Punch",
fr: "Poing léger",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Steady Punch",
fr: "Poing énergétique",
},
text: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.",
},
damage: 20
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card