1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

101 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Trevenant",
fr: "Desséliande",
es: "Trevenant",
it: "Trevenant",
pt: "Trevenant",
de: "Trombork"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
709,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Phantump",
fr: "Brocélôme",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Perplexing Forest",
fr: "Forêt Déroutante",
es: "Bosque Desconcertante",
it: "Foresta Sconcertante",
pt: "Floresta Estarrecedora",
de: "Verblüffender Wald"
},
effect: {
en: "You may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Vous pouvez demander à votre adversaire déchanger son Pokémon Actif avec lun de ses Pokémon de Banc.",
es: "Puedes hacer que tu rival cambie su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Puoi far scambiare al tuo avversario il suo Pokémon attivo con uno della sua panchina.",
pt: "Você pode fazer com que o seu oponente troque o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
de: "Du kannst deinen Gegner dazu veranlassen, sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank auszutauschen."
},
damage: 20,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Shadow Impact",
fr: "Impact Lugubre",
es: "Impacto Sombra",
it: "Impatto Ombra",
pt: "Impacto Sombrio",
de: "Schatteneinschlag"
},
effect: {
en: "Put 4 damage counters on 1 of your Pokémon.",
fr: "Placez 4 marqueurs de dégâts sur lun de vos Pokémon.",
es: "Pon 4 contadores de daño en 1 de tus Pokémon.",
it: "Metti quattro segnalini danno su uno dei tuoi Pokémon.",
pt: "Coloque 4 contadores de dano em 1 dos seus Pokémon.",
de: "Lege 4 Schadensmarken auf 1 deiner Pokémon."
},
damage: 120,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card