1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

50 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Lilliterelle",
en: "Nymble",
es: "Nymble",
it: "Nymble",
pt: "Nymble",
de: "Micrick"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
fr: "Coup Déchaîné",
en: "Wild Kick",
es: "Patada Salvaje",
it: "Calcio Selvaggio",
pt: "Chute sem Pontaria",
de: "Stürmischer Kick"
},
effect: {
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
en: "Flip a coin. If tails, this attack does nothing.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card