1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37: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

78 lines
2.5 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: false,
reverse: true,
holo: true,
firstEdition: false
},
name: {
en: "Salamence",
fr: "Drattak",
es: "Salamence",
it: "Salamence",
pt: "Salamence",
de: "Brutalanda"
},
rarity: "Rare",
category: "Pokemon",
hp: 170,
types: ["Dragon"],
stage: "Stage2",
illustrator: "kodama",
abilities: [{
type: "Ability",
name: {
en: "Intimidating Roar",
fr: "Rugissement Intimidant",
es: "Rugido Intimidatorio",
it: "Spaventaruggito",
pt: "Intimidating Roar",
de: "Einschüchterndes Gebrüll"
},
effect: {
en: "Once during your turn, you may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez demander à votre adversaire déchanger son Pokémon Actif contre lun de ses Pokémon de Banc.",
es: "Una vez durante tu turno, puedes hacer que tu rival cambie su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Una sola volta durante il tuo turno, puoi far scambiare al tuo avversario il suo Pokémon attivo con uno della sua panchina.",
pt: "Once during your turn, you may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
de: "Einmal während deines Zuges kannst du deinen Gegner dazu veranlassen, sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank auszutauschen."
}
}],
attacks: [{
name: {
en: "Fierce Dragon",
fr: "Dragon Féroce",
es: "Dragón Feroz",
it: "Drago Feroce",
pt: "Fierce Dragon",
de: "Wütender Drache"
},
effect: {
en: "If your opponents Active Pokémon already has any damage counters on it, this attack does 120 more damage.",
fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 120 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 120 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 120 danni in più.",
pt: "If your opponents Active Pokémon already has any damage counters on it, this attack does 120 more damage.",
de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu."
},
damage: "100+",
cost: ["Fire", "Water"]
}],
retreat: 2
}
export default card