1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/42.ts
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

96 lines
2.0 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Krabby",
fr: "Krabby",
es: "Krabby",
it: "Krabby",
pt: "Krabby",
de: "Krabby"
},
illustrator: "ryoma uratsuka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
98,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Aqua Shower",
fr: "Aqua-Douche",
es: "Acuaducha",
it: "Acquadoccia",
pt: "Aqua Ducha",
de: "Aquadusche"
},
effect: {
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 10 puntos de daño a cada uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 10 danni a ciascuno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 10 pontos de dano a cada um dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt jedem Pokémon deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Vise Grip",
fr: "Force Poigne",
es: "Agarre",
it: "Presa",
pt: "Agarramento Compressor",
de: "Klammer"
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It can be found near the sea. The large pincers grow back if they are torn out of their sockets."
}
}
export default card