mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
635 B
TypeScript
48 lines
635 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [43],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Oddish",
|
|
fr: "Mystherbe",
|
|
es: "Oddish",
|
|
it: "Oddish",
|
|
pt: "Oddish",
|
|
de: "Myrapla"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Ram",
|
|
fr: "Collision",
|
|
es: "Apisonar",
|
|
it: "Carica",
|
|
pt: "Aríete",
|
|
de: "Ramme"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card
|