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

100 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: "pl3-119",
localId: 119,
// Card informations
name: {
en: "Paras",
fr: "Paras",
},
hp: 50,
type: [
Type.GRASS,
],
dexId: 46,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/119/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/119/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/119/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/119/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 22,
name: "Yukiko Baba"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Spore",
fr: "Spore",
},
text: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
},{
cost: [
Type.GRASS
],
name: {
en: "Stomp",
fr: "Écrasement",
},
text: {
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIRE,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card