mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
104 lines
1.8 KiB
TypeScript
104 lines
1.8 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: "pl2-76",
|
||
localId: 76,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Quagsire GL",
|
||
fr: "Maraiste Niv. 34",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 195,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/pl/pl2/76/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/pl/pl2/76/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/pl/pl2/76/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/pl/pl2/76/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 2,
|
||
name: "Midori Harada"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 64,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Submerge",
|
||
fr: "Submerger",
|
||
},
|
||
text: {
|
||
en: "As long as Quagsire is on your Bench, prevent all damage done to Quagsire by attacks (both yours and your opponent's).",
|
||
fr: "Tant que Maraiste est sur votre Banc, prévenez tous les dégâts qui lui sont infligés par des attaques (de vos Pokémon et des Pokémon de votre adversaire).",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Punch and Run",
|
||
fr: "Frapper et partir en courant",
|
||
},
|
||
text: {
|
||
en: "You may switch Quagsire with 1 of your Benched Pokémon.",
|
||
fr: "Vous pouvez échanger Maraiste avec 1 des Pokémon de votre Banc.",
|
||
},
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.GRASS,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.LIGHTNING,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Rising Rivals",
|
||
code: "pl2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|