1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

102 lines
2.1 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: "dp7-78",
localId: 78,
// Card informations
name: {
en: "Tangela",
fr: "Tangela",
},
hp: 70,
type: [
Type.GRASS,
],
dexId: 114,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/78/low",
fr: "https://assets.tcgdex.net/fr/dp/dp7/78/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/78/high",
fr: "https://assets.tcgdex.net/fr/dp/dp7/78/high",
},
},
evolveFrom: {
fr: "Saquedeneu",
},
tags: [
Tag.BASIC,
],
illustrator: "Yukiko Baba",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Ingrain",
fr: "Racines",
},
text: {
en: "Flip a coin. If tails, this attack does nothing. If heads, search your deck for a Grass Energy card and attach it to Tangela. Shuffle your deck afterward. If you do, prevent all effects of an attack, including damage, done to Tangela during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet. Si c'est face, cherchez dans votre deck une carte Énergie Grass et attachez-la à Saquedeneu. Ensuite, mélangez votre deck. Prévenez alors tous les effets d'une attaque, dégâts inclus, infligés à Saquedeneu lors du prochain tour de votre adveraire.",
},
},{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Tickle",
fr: "Chatouille",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIRE,
value: "+10"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 1,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card