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

83 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: false,
reverse: true,
holo: true,
firstEdition: false
},
name: {
en: "Slaking",
fr: "Monaflèmit",
es: "Slaking",
it: "Slaking",
pt: "Slaking",
de: "Letarking"
},
rarity: "Rare",
category: "Pokemon",
hp: 180,
types: ["Colorless"],
stage: "Stage2",
illustrator: "Mitsuhiro Arita",
abilities: [{
type: "Ability",
name: {
en: "Act Freely",
fr: "Libre Comme lAir",
es: "A tu Antojo",
it: "Senza Freni",
pt: "Act Freely",
de: "Freie Stücke"
},
effect: {
en: "If a Stadium is in play, this Pokémon cant attack.",
fr: "Si un Stade est en jeu, ce Pokémon ne peut pas attaquer.",
es: "Si hay un Estadio en juego, este Pokémon no puede atacar.",
it: "Se cè in gioco una carta Stadio, questo Pokémon non può attaccare.",
pt: "If a Stadium is in play, this Pokémon cant attack.",
de: "Wenn eine Stadionkarte im Spiel ist, kann dieses Pokémon nicht angreifen."
}
}],
attacks: [{
name: {
en: "Rout",
fr: "Débâcle",
es: "Esparcir",
it: "Stanamento",
pt: "Rout",
de: "Verheerung"
},
effect: {
en: "This attack does 30 more damage for each of your opponents Benched Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chacun des Pokémon de Banc de votre adversaire.",
es: "Este ataque hace 30 puntos de daño más por cada uno de los Pokémon en Banca de tu rival.",
it: "Questo attacco infligge 30 danni in più per ogni Pokémon nella panchina del tuo avversario.",
pt: "This attack does 30 more damage for each of your opponents Benched Pokémon.",
de: "Diese Attacke fügt für jedes Pokémon auf der Bank deines Gegners 30 Schadenspunkte mehr zu."
},
damage: "120+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4
}
export default card