mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
93 lines
1.4 KiB
TypeScript
93 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: "sm10-16",
|
||
localId: 16,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Tangela",
|
||
fr: "Saquedeneu",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 114,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm10/16/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm10/16/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm10/16/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm10/16/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Naoyo Kimura",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Tangle Drag",
|
||
fr: "Lasso Piège",
|
||
},
|
||
text: {
|
||
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon.",
|
||
fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Gentle Slap",
|
||
fr: "Gifle Douce",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unbroken Bonds",
|
||
code: "sm10"
|
||
}
|
||
}
|
||
|
||
export default card
|