1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 18:59:53 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

86 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Sword & Shield'
const card: Card = {
name: {
en: "Maractus",
fr: "Maracachi",
es: "Maractus",
it: "Maractus",
pt: "Maractus",
de: "Maracamba"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
556,
],
hp: 110,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Zzzt",
fr: "Bzzz",
es: "Bzzz",
it: "Bzzz",
pt: "Bzzz",
de: "Piiieks"
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Powerful Needles",
fr: "Piquants Puissants",
es: "Espinas Poderosas",
it: "Spine Poderose",
pt: "Espinhos Poderosos",
de: "Kräftige Stacheln"
},
effect: {
en: "Flip a coin for each Energy attached to this Pokémon. This attack does 60 damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie attachée à ce Pokémon. Cette attaque inflige 60 dégâts pour chaque côté face.",
es: "Lanza 1 moneda por cada Energía unida a este Pokémon. Este ataque hace 60 puntos de daño por cada cara.",
it: "Lancia una moneta per ogni Energia assegnata a questo Pokémon. Questo attacco infligge 60 danni ogni volta che esce testa.",
pt: "Jogue 1 moeda para cada Energia ligada a este Pokémon. Este ataque causa 60 pontos de dano para cada cara.",
de: "Wirf für jede an dieses Pokémon angelegte Energie 1 Münze. Diese Attacke fügt 60 Schadenspunkte pro Kopf zu."
},
damage: "60×",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
regulationMark: "D"
}
export default card