1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +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

101
cards/bw/bw8/66.ts Normal file
View File

@ -0,0 +1,101 @@
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: "bw8-66",
localId: 66,
// Card informations
name: {
en: "Garbodor",
fr: "Miasmax",
},
hp: 110,
type: [
Type.PSYCHIC,
],
dexId: 569,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/66/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/66/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/66/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/66/high.png",
},
},
evolveFrom: {
en: "Trubbish",
fr: "Miamiasme",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Biosmog",
fr: "Brouillard Toxique",
},
text: {
en: "The Defending Pokémon is now Poisoned. Flip a coin. If heads, discard an Energy attached to that Pokémon.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné. Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Sludge Bomb",
fr: "Bomb-Beurk",
},
damage: 70
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card