1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

42 lines
1.6 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Devoured Field",
fr: "Terrain Dévoré",
es: "Campo Devorado",
it: "Piana Desolata",
pt: "Campo Devorado",
de: "Verschlungener Hain"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Les attaques des Pokémon Darkness et des Pokémon Dragon (les vôtres et ceux de votre adversaire) infligent 10 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
en: "The attacks of Darkness Pokémon and Dragon Pokémon (both yours and your opponents) do 10 more damage to the opponents Active Pokémon (before applying Weakness and Resistance).",
es: "Los ataques de los Pokémon Darkness y Pokémon Dragon (tantos tuyos como de tu rival) hacen 10 puntos de daño más al Pokémon Activo del rival (antes de aplicar Debilidad y Resistencia).",
it: "Gli attacchi dei Pokémon Darkness e dei Pokémon Dragon, sia tuoi che del tuo avversario, infliggono 10 danni in più al Pokémon attivo dellavversario, prima di aver applicato debolezza e resistenza.",
pt: "Os ataques dos Pokémon Darkness e Pokémon Dragon (seus e do seu oponente) causam 10 pontos de dano a mais ao Pokémon Ativo do oponente (antes de aplicar Fraqueza e Resistência).",
de: "Die Attacken der Darkness-Pokémon und Dragon-Pokémon (deiner und der deines Gegners) fügen dem Aktiven Pokémon deines Gegners 10 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Stadium",
}
export default card