mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
105 lines
1.6 KiB
TypeScript
105 lines
1.6 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: "xy11-2",
|
||
localId: 2,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Tangrowth",
|
||
fr: "Bouldeneu",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 465,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy11/2/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy11/2/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy11/2/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy11/2/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Tangela",
|
||
fr: "Saquedeneu",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "kirisAki",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Leaf Storm",
|
||
fr: "Tempête Verte",
|
||
},
|
||
text: {
|
||
en: "Heal 40 damage from each of your Grass Pokémon.",
|
||
fr: "Soignez 40 dégâts à chacun de vos Pokémon Grass.",
|
||
},
|
||
damage: 80
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Flog",
|
||
fr: "Martinet",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||
},
|
||
damage: 110
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Steam Siege",
|
||
code: "xy11"
|
||
}
|
||
}
|
||
|
||
export default card
|