mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +00:00
98 lines
1.4 KiB
TypeScript
98 lines
1.4 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "pl3-81",
|
|
localId: 81,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Roserade",
|
|
fr: "Roserade",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.GRASS,
|
|
],
|
|
|
|
dexId: 407,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/81/low",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/81/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/81/high",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/81/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Roselia",
|
|
fr: "Roselia",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Hajime Kusajima",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.GRASS
|
|
],
|
|
name: {
|
|
en: "Cut",
|
|
fr: "Coupe",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.GRASS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Poison Seed",
|
|
fr: "Graine poison",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon is now Poisoned.",
|
|
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|