1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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: false,
holo: false,
firstEdition: false
},
name: {
en: "Arctovish V",
fr: "Hydragla V",
es: "Arctovish V",
it: "Arctovish V",
pt: "Arctovish V",
de: "Pescryodon V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 220,
types: ["Water"],
stage: "Basic",
illustrator: "Eske Yoshinob",
suffix: "V",
attacks: [{
name: {
en: "Ancient Freeze",
fr: "Givre Ancestral",
es: "Congelación Ancestral",
it: "Antico Gelo",
pt: "Ancient Freeze",
de: "Uralte Eisstarre"
},
effect: {
en: "If the Defending Pokémon is a Pokémon V or a Pokémon-GX, it cant attack during your opponents next turn.",
fr: "Si le Pokémon Défenseur est un Pokémon-V ou un Pokémon-GX, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
es: "Si el Pokémon Defensor es un Pokémon V o un Pokémon-GX, no puede atacar durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon-V o un Pokémon-GX.",
pt: "If the Defending Pokémon is a Pokémon V or a Pokémon-GX, it cant attack during your opponents next turn.",
de: "Wenn das Verteidigende Pokémon ein Pokémon-V oder Pokémon-GX ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}, {
name: {
en: "Giga Impact",
fr: "Giga Impact",
es: "Gigaimpacto",
it: "Gigaimpatto",
pt: "Giga Impact",
de: "Gigastoß"
},
effect: {
en: "During your next turn, this Pokémon cant attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "During your next turn, this Pokémon cant attack.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 220,
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2
}
export default card