1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 00:52:08 +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

91 lines
2.1 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Stantler",
fr: "Cerfrousse",
es: "Stantler",
it: "Stantler",
pt: "Stantler",
de: "Damhirplex"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
234,
],
hp: 110,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Mystifying Horns",
fr: "Mysti-Cornes",
es: "Cuernos Desconcertantes",
it: "Falsecorna",
pt: "Chifres da Mistificação",
de: "Mystik-Hörner"
},
effect: {
en: "Your opponents Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Il Pokémon attivo del tuo avversario viene confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Enhanced Horns",
fr: "Cornes Améliorées",
es: "Cuernos Mejorados",
it: "Supercorna",
pt: "Chifres Acentuados",
de: "Spezial-Hörner"
},
effect: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 60 more damage.",
fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 60 dégâts supplémentaires.",
es: "Si este Pokémon tiene 1 carta de Herramienta Pokémon unida a él, este ataque hace 60 puntos de daño más.",
it: "Se questo Pokémon ha una carta Oggetto Pokémon assegnata, questo attacco infligge 60 danni in più.",
pt: "Se este Pokémon tiver uma carta de Ferramenta Pokémon ligada a ele, este ataque causará 60 pontos de dano a mais.",
de: "Wenn an dieses Pokémon eine Pokémon-Ausrüstung angelegt ist, fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card