mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Crown Zenith"
|
||
|
||
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: ["Colorless"],
|
||
|
||
name: {
|
||
en: "Leaf Boomerang",
|
||
fr: "Feuille-Boomerang",
|
||
es: "Boomerang Hoja",
|
||
it: "Fogliamerang",
|
||
pt: "Folha Bumerangue",
|
||
de: "Blätter-Bumerang"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 10 damage for each heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
|
||
es: "Lanza 2 monedas. Este ataque hace 10 puntos de daño por cada cara.",
|
||
it: "Lancia due volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
|
||
pt: "Jogue 2 moedas. Este ataque causa 10 pontos de dano para cada cara.",
|
||
de: "Wirf 2 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu."
|
||
},
|
||
|
||
damage: "10×"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "F",
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card |