1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

86 lines
2.3 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",
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 can't attack during your opponent's 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 can't attack during your opponent's 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 can't 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 can't 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,
dexId: [883],
regulationMark: "E",
suffix: "V"
}
export default card