1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

114 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: "pl1-43",
localId: 43,
// Card informations
name: {
en: "Carnivine",
fr: "Vortente",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 455,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/43/low",
fr: "https://assets.tcgdex.net/fr/pl/pl1/43/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/43/high",
fr: "https://assets.tcgdex.net/fr/pl/pl1/43/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Mitsuhiro Arita",
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Stretch Vine",
fr: "Longue Liane",
},
text: {
en: "Choose 2 of your opponent's Benched Pokémon. This attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 2 des Pokémon de Banc de votre adversaire. Cette attaque inflige 10 dégâts à chacun. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Absorb",
fr: "Vol-vie",
},
text: {
en: "Remove 2 damage counters from Carnivine.",
fr: "Retirez à Vortente 2 marqueurs de dégât.",
},
damage: 20
},{
cost: [
Type.GRASS,
Type.GRASS
],
name: {
en: "Vine Extract",
fr: "Extrait de plante",
},
text: {
en: "If the Defending Pokémon already has any damage counters on it, the Defending Pokémon is now Burned and Poisoned.",
fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, il est maintenant Brûlé et Empoisonné.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 2,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card