1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

73 lines
2.0 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Tropius",
fr: "Tropius",
es: "Tropius",
it: "Tropius",
pt: "Tropius",
de: "Tropius"
},
rarity: "Rare",
category: "Pokemon",
hp: 110,
types: ["Grass"],
stage: "Basic",
illustrator: "Oswaldo KATO",
attacks: [{
name: {
en: "Rally Back",
fr: "Répercussions",
es: "Apoyo Vengativo",
it: "Radunata Rinforzi",
pt: "Rally Back",
de: "Aufholjagd"
},
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an attack from your opponents Pokémon during their last turn, this attack does 90 more damage.",
fr: "Si au moins lun de vos Pokémon a été mis K.O. par les dégâts dune attaque dun Pokémon de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si alguno de tus Pokémon quedó Fuera de Combate por el daño de un ataque de los Pokémon de tu rival durante su último turno, este ataque hace 90 puntos de daño más.",
it: "Se uno qualsiasi dei tuoi Pokémon è stato messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario durante il suo ultimo turno, questo attacco infligge 90 danni in più.",
pt: "If any of your Pokémon were Knocked Out by damage from an attack from your opponents Pokémon during their last turn, this attack does 90 more damage.",
de: "Wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners durch Schaden einer Attacke der Pokémon deines Gegners kampfunfähig wurde, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Grass", "Colorless"]
}, {
name: {
en: "Solar Beam",
fr: "Lance-Soleil",
es: "Rayo Solar",
it: "Solarraggio",
pt: "Solar Beam",
de: "Solarstrahl"
},
damage: 100,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card