1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] eea5c5147b
editor: add rarities for 151 set (#507)
Co-authored-by: Avior <git@avior.me>
2024-07-03 12:38:33 +02:00

55 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
dexId: [102],
set: Set,
name: {
fr: "Noeunoeuf",
en: "Exeggcute",
es: "Exeggcute",
it: "Exeggcute",
pt: "Exeggcute",
de: "Owei"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
fr: "Boulé-Roulade",
en: "Ball Roll",
es: "Rodabola",
it: "Rotopalla",
pt: "Rolo Bola",
de: "Ballrolle"
},
effect: {
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts pour chaque côté face.",
en: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño por cada cara.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni ogni volta che esce testa.",
pt: "Jogue uma moeda até sair coroa. Este ataque causa 30 pontos de dano para cada cara.",
de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
},
damage: "30×"
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card