1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

90 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: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Wishiwashi",
fr: "Froussardine",
es: "Wishiwashi",
it: "Wishiwashi",
pt: "Wishiwashi",
de: "Lusardin"
},
rarity: "Rare",
category: "Pokemon",
hp: 30,
types: ["Water"],
stage: "Basic",
illustrator: "Teeziro",
abilities: [{
type: "Ability",
name: {
en: "Group Power",
fr: "Force de Groupe",
es: "Poder de Grupo",
it: "Potere di Gruppo",
pt: "Group Power",
de: "Gruppenstärke"
},
effect: {
en: "If this Pokémon has 3 or more Water Energy attached, it gets +150 HP.",
fr: "Si au moins 3 Énergies Water sont attachées à ce Pokémon, il reçoit +150 PV.",
es: "Si este Pokémon tiene 3 Energías Water o más unidas a él, obtiene 150 PS más.",
it: "Se questo Pokémon ha tre o più Energie Water assegnate, ha 150 PS in più.",
pt: "If this Pokémon has 3 or more Water Energy attached, it gets +150 HP.",
de: "Wenn an dieses Pokémon 3 oder mehr Water-Energien angelegt sind, erhält es +150 KP."
}
}],
attacks: [{
name: {
en: "Schooling Shot",
fr: "Tir Groupé",
es: "Disparo Banco",
it: "Colpobanco",
pt: "Schooling Shot",
de: "Fischschwarmschuss"
},
effect: {
en: "This attack does 30 more damage for each basic Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie de base attachée à ce Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía Básica unida a este Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni Energia base assegnata a questo Pokémon.",
pt: "This attack does 30 more damage for each basic Energy attached to this Pokémon.",
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Basis-Energie 30 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
description: {
en: "When it senses danger, its eyes tear up. The sparkle of its tears signals other Wishiwashi to gather."
},
dexId: [746],
regulationMark: "E"
}
export default card