1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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-55",
localId: 55,
// Card informations
name: {
en: "Cherrim",
fr: "Ceriflor",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 421,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/55/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/55/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/55/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/55/high.png",
},
},
evolveFrom: {
en: "Cherubi",
fr: "Ceribou",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 62,
name: "Saya Tsuruta"
},
attacks: [{
name: {
en: "Ram",
fr: "Collision",
},
damage: 20
},{
cost: [
Type.GRASS
],
name: {
en: "Petal Dance",
fr: "Danse-fleur",
},
text: {
en: "Flip 3 coins. This attack does 30 damage times the number of heads. Cherrim is now Confused.",
fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces. Ceriflor est maintenant Confus.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card