1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

109 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "bw9-46",
localId: 46,
// Card informations
name: {
en: "Muk",
fr: "Grotadmorv",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 89,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw9/46/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/46/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw9/46/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/46/high.png",
},
},
evolveFrom: {
en: "Grimer",
fr: "Tadmorv",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Poison Suction",
fr: "Succion Empoisonnée",
},
text: {
en: "If the Defending Pokémon is Poisoned, heal 60 damage from this Pokémon.",
fr: "Si le Pokémon Défenseur est Empoisonné, soignez 60 dégâts à ce Pokémon.",
},
damage: 60
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sludge Crash",
fr: "Flot de Vase",
},
text: {
en: "Flip a coin until you get tails. For each heads, discard an Energy attached to the Defending Pokémon.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 80
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Freeze",
code: "bw9"
}
}
export default card