1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12: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

46 lines
613 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [714],
set: Set,
name: {
fr: "Sonistrelle",
en: "Noibat",
es: "Noibat",
it: "Noibat",
pt: "Noibat",
de: "eF-eM"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Dragon"],
stage: "Basic",
attacks: [{
cost: ["Psychic", "Darkness"],
name: {
fr: "Tornade",
en: "Gust",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 40
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card