1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Updated Evolving Skies with attacks and other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-08-28 16:54:37 +02:00
parent 90ebef01cf
commit b46b2c4fb9
194 changed files with 8779 additions and 436 deletions

View File

@ -12,14 +12,72 @@ const card: Card = {
},
name: {
en: "Slaking"
en: "Slaking",
fr: "Monaflèmit",
es: "Slaking",
it: "Slaking",
pt: "Slaking",
de: "Letarking"
},
rarity: "Ultra Rare",
rarity: "Rare",
category: "Pokemon",
hp: 180,
types: ["Colorless"],
stage: "Stage2"
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