1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

57 lines
1.3 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 "../Crown Zenith"
const card: Card = {
dexId: [831],
set: Set,
name: {
en: "Wooloo",
fr: "Moumouton",
es: "Wooloo",
it: "Wooloo",
pt: "Wooloo",
de: "Wolly"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Rolling Rollout",
fr: "Roulé Déroulé",
es: "Salir Rodando",
it: "Rotolamento Ruzzolante",
pt: "Rolagem Rolante",
de: "Rollender Walzer"
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts pour chaque côté face.",
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 1 moeda até sair coroa. Este ataque causa 30 pontos de dano para cada cara.",
de: "Wirf so lange 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
},
damage: "30×"
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card