1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

47 lines
656 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
dexId: [43],
set: Set,
name: {
en: "Oddish",
fr: "Mystherbe",
es: "Oddish",
it: "Oddish",
pt: "Oddish",
de: "Myrapla"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 60,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Razor Leaf",
fr: "Tranch'Herbe",
es: "Hoja Afilada",
it: "Foglielama",
pt: "Folha Navalha",
de: "Rasierblatt"
},
damage: 20
}],
retreat: 1,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card