1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

80 lines
2.3 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Hydragla",
en: "Arctovish",
es: "Arctovish",
it: "Arctovish",
pt: "Arctovish",
de: "Pescryodon"
},
illustrator: "Masakazu Fukuda",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 150,
types: ["Water"],
evolveFrom: {
fr: "Fossile Rare",
en: "Rare Fossil"
},
attacks: [{
name: {
fr: "Visage Dur",
en: "Hard Face",
es: "Cara Resistente",
it: "Musoduro",
pt: "Cara Dura",
de: "Harte Oberfläche"
},
effect: {
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 60 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
en: "During your opponents next turn, this Pokémon takes 60 less damage from attacks (after applying Weakness and Resistance).",
es: "Durante el próximo turno de tu rival, los ataques hacen 60 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 60 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 60 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
damage: 90,
cost: ["Water", "Colorless", "Colorless"]
}, {
name: {
fr: "Souffle Froid",
en: "Cold Breath",
es: "Aliento Frío",
it: "Alito Ibernante",
pt: "Respiração Fria",
de: "Eisiger Atem"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
en: "Your opponents Active Pokémon is now Asleep.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
damage: 130,
cost: ["Water", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card