1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +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

93 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: "Cramorant",
fr: "Nigosier",
es: "Cramorant",
it: "Cramorant",
pt: "Cramorant",
de: "Urgl"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Water Arrow",
fr: "Flèche d'Eau",
es: "Flecha de Agua",
it: "Idrofreccia",
pt: "Flecha d'Água",
de: "Wasserpfeil"
},
effect: {
en: "This attack does 20 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 20 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 20 puntos de daño a 1 de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 20 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 20 pontos de dano a 1 dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt 1 Pokémon deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Water Gun",
fr: "Pistolet à O",
es: "Pistola Agua",
it: "Pistolacqua",
pt: "Revólver d'Água",
de: "Aquaknarre"
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "It's so strong that it can knock out some opponents in a single hit, but it also may forget what it's battling midfight."
},
dexId: [845]
}
export default card