1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

89 lines
1.5 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 '../Unified Minds'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
es: "Pikachu",
it: "Pikachu",
pt: "Pikachu",
de: "Pikachu"
},
illustrator: "Sanosuke Sakuma",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Meal Time",
fr: "À Belles Dents",
es: "Hora de Comer",
it: "Buon Appetito",
pt: "Hora da Refeição",
de: "Mahlzeit"
},
effect: {
en: "Flip a coin until you get tails. For each heads, draw a card.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Pour chaque côté face, piochez une carte.",
es: "Lanza 1 moneda hasta que salga cruz. Por cada cara, roba 1 carta.",
it: "Lancia una moneta finché non esce croce. Ogni volta che esce testa, pesca una carta.",
pt: "Jogue 1 moeda até sair coroa. Para cada cara, compre 1 carta.",
de: "Wirf so lang 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Ziehe pro Kopf 1 Karte."
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Gnaw",
fr: "Ronge",
es: "Roer",
it: "Rosicchiamento",
pt: "Roída",
de: "Nagen"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card