1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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
1.7 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Indeedee",
fr: "Wimessir",
es: "Indeedee",
it: "Indeedee",
pt: "Indeedee",
de: "Servol"
},
illustrator: "Saya Tsuruta",
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
attacks: [{
name: {
en: "Collect",
fr: "Collecte",
es: "Coleccionar",
it: "Tassa",
pt: "Coleta",
de: "Sammeln"
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
},
cost: ["Colorless"]
}, {
name: {
en: "Hand Kinesis",
fr: "Télékinésie en Main",
es: "Manoquinesis",
it: "Manocinèsi",
pt: "Cinese de Mão",
de: "Handkinese"
},
effect: {
en: "This attack does 10 damage for each card in your hand.",
fr: "Cette attaque inflige 10 dégâts pour chaque carte dans votre main.",
es: "Este ataque hace 10 puntos de daño por cada carta en tu mano.",
it: "Questo attacco infligge 10 danni per ogni carta nella tua mano.",
pt: "Este ataque causa 10 pontos de dano para cada carta na sua mão.",
de: "Diese Attacke fügt für jede Karte auf deiner Hand 10 Schadenspunkte zu."
},
damage: "10×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "Through its horns, it can pick up on the emotions of creatures around it. Positive emotions are the source of its strength."
}
}
export default card