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

97 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: "pl1-89",
localId: 89,
// Card informations
name: {
en: "Ralts",
fr: "Tarsal",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 280,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/89/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/89/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/89/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/89/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 37,
name: "Miki Tanaka"
},
attacks: [{
name: {
en: "Future Sight",
fr: "Prescience",
},
text: {
en: "Look at the top 5 cards of either player's deck and put them back on top of that player's deck in any order.",
fr: "Regardez les 5 cartes du dessus du deck de chaque joueur et replacez-les au dessus du deck de chaque joueur dans n'importe quel ordre.",
},
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.",
},
damage: 10
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card