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

87 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: "Suicune V",
fr: "Suicune V",
es: "Suicune V",
it: "Suicune V",
pt: "Suicune V",
de: "Suicune V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Water"],
stage: "Basic",
illustrator: "Ayaka Yoshida",
abilities: [{
type: "Ability",
name: {
en: "Fleet-Footed",
fr: "Pas Agiles",
es: "Celeridad",
it: "Corsalesta",
pt: "Fleet-Footed",
de: "Leichtfüßig"
},
effect: {
en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw a card.",
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez piocher une carte.",
es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar 1 carta.",
it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi pescare una carta.",
pt: "Once during your turn, if this Pokémon is in the Active Spot, you may draw a card.",
de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du 1 Karte ziehen."
}
}],
attacks: [{
name: {
en: "Blizzard Rondo",
fr: "Rondo Givrant",
es: "Rondó Ventisca",
it: "Borarondò",
pt: "Blizzard Rondo",
de: "Blizzardrondo"
},
effect: {
en: "This attack does 20 more damage for each Benched Pokémon (both yours and your opponent's).",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc (les vôtres et ceux de votre adversaire).",
es: "Este ataque hace 20 puntos de daño más por cada Pokémon en Banca (tanto tuyos como de tu rival).",
it: "Questo attacco infligge 20 danni in più per ogni Pokémon in panchina, sia tuo che del tuo avversario.",
pt: "This attack does 20 more damage for each Benched Pokémon (both yours and your opponent's).",
de: "Diese Attacke fügt für jedes Pokémon auf der Bank (deiner und der deines Gegners) 20 Schadenspunkte mehr zu."
},
damage: "20+",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
dexId: [245],
regulationMark: "E",
suffix: "V"
}
export default card