1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

59 lines
840 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [769],
set: Set,
name: {
fr: "Bacabouh",
en: "Sandygast",
es: "Sandygast",
it: "Sandygast",
pt: "Sandygast",
de: "Sankabuh"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
fr: "Murmure",
en: "Mumble",
es: "Farfullar",
it: "Borbottio",
pt: "Resmungo",
de: "Grummeln"
},
damage: 20
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
fr: "Tir de Boue",
en: "Mud Shot",
es: "Disparo Lodo",
it: "Colpodifango",
pt: "Tiro de Lama",
de: "Lehmschuss"
},
damage: 40
}],
retreat: 3,
regulationMark: "G",
variants: {
holo: false
}
}
export default card