1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Black & White/Noble Victories/48.ts

68 lines
863 B
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'
import Set from '../Noble Victories'
const card: Card = {
name: {
en: "Trubbish",
fr: "Miamiasme",
},
illustrator: "MAHOU",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
568,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Garbage Collection",
fr: "Fouille Poubelle",
},
effect: {
en: "Put a card from your discard pile on top of your deck.",
fr: "Mettez n'importe quelle carte de votre pile de défausse sur le dessus de votre deck.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Sludge Bomb",
fr: "Bomb-Beurk",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card