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

117 lines
2.2 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-24",
localId: 24,
// Card informations
name: {
en: "Dugtrio",
fr: "Triopikeur",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 51,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/24/low",
fr: "https://assets.tcgdex.net/fr/pl/pl1/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/24/high",
fr: "https://assets.tcgdex.net/fr/pl/pl1/24/high",
},
},
evolveFrom: {
en: "Diglett",
fr: "Taupiqueur",
},
tags: [
Tag.STAGE1,
],
illustrator: "Sumiyoshi Kizuki",
abilities: [{
id: 1121,
type: AbilityType.POKEBODY,
name: {
en: "Sinkhole",
fr: "Chausse-trappe",
},
text: {
en: "If your opponent's Active Pokémon retreats, put 2 damage counters on that Pokémon.",
fr: "Si le Pokémon Actif de votre adversaire bat en retraite, placez 2 marqueurs de dégât sur ce Pokémon.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Push Down",
fr: "Renverser",
},
text: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 30
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Magnitude",
fr: "Ampleur",
},
text: {
en: "Does 10 damage to each Benched Pokémon (both yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun des Pokémon de Banc (les vôtres et ceux de votre adversaire). (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
damage: 70
}],
weaknesses: [{
type: Type.WATER,
value: "+20"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card