1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

86 lines
2.2 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Galarian Slowbro",
fr: "Flagadoss de Galar",
es: "Slowbro de Galar",
it: "Slowbro di Galar",
pt: "Slowbro de Galar",
de: "Galar-Lahmus"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
evolveFrom: {
en: "Galarian Slowpoke",
fr: "Ramoloss de Galar"
},
attacks: [{
name: {
en: "Splattering Poison",
fr: "Poison Éclaboussant",
es: "Veneno Salpicante",
it: "Spruzzata di Veleno",
pt: "Respingar Veneno",
de: "Giftgespritze"
},
effect: {
en: "Both Active Pokémon are now Poisoned.",
fr: "Les deux Pokémon Actifs sont maintenant Empoisonnés.",
es: "Ambos Pokémon Activos pasan a estar Envenenados.",
it: "Entrambi i Pokémon attivi vengono avvelenati.",
pt: "Ambos os Pokémon Ativos agora estão Envenenados.",
de: "Beide Aktiven Pokémon sind jetzt vergiftet."
},
cost: ["Darkness"]
}, {
name: {
en: "Unhinged Hammer",
fr: "Marteau Dérangé",
es: "Martillo Desquiciado",
it: "Martello Scatenato",
pt: "Martelo Ensandecido",
de: "Rasender Hammer"
},
effect: {
en: "If this Pokémon is affected by a Special Condition, this attack does 120 more damage.",
fr: "Si ce Pokémon est affecté par un État Spécial, cette attaque inflige 120 dégâts supplémentaires.",
es: "Si este Pokémon se ve afectado por una Condición Especial, este ataque hace 120 puntos de daño más.",
it: "Se questo Pokémon è influenzato da una condizione speciale, questo attacco infligge 120 danni in più.",
pt: "Se este Pokémon estiver afetado por uma Condição Especial, este ataque causará 120 pontos de dano a mais.",
de: "Wenn dieses Pokémon von einem Speziellen Zustand betroffen ist, fügt diese Attacke 120 Schadenspunkte mehr zu."
},
damage: "100+",
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card