1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

103
cards/pl/pl2/76.ts Normal file
View File

@ -0,0 +1,103 @@
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