mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
121 lines
2.3 KiB
TypeScript
121 lines
2.3 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../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.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/24/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/24/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/24/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Diglett",
|
|
fr: "Taupiqueur",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 7,
|
|
name: "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
|
|
|