1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

98 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Cinccino",
fr: "Pashmilla",
es: "Cinccino",
it: "Cinccino",
pt: "Cinccino",
de: "Chillabell"
},
illustrator: "sui",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Minccino",
fr: "Chinchidou",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Make Do",
fr: "Faire Avec",
es: "Apañárselas",
it: "Fare a Meno",
pt: "Quebrar o Galho",
de: "Notbehelf"
},
effect: {
en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw 2 cards.",
fr: "Vous devez défausser une carte de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez piocher 2 cartes.",
es: "Debes descartar 1 carta de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes robar 2 cartas.",
it: "Devi scartare una carta che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi pescare due carte.",
pt: "Você deve descartar 1 carta da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá comprar 2 cartas.",
de: "Du musst 1 Karte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du 2 Karten ziehen."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Assist",
fr: "Assistance Énergétique",
es: "Asistencia de Energía",
it: "Assistienergia",
pt: "Socorro de Energia",
de: "Energieförderung"
},
effect: {
en: "Attach a basic Energy card from your discard pile to 1 of your Benched Pokémon.",
fr: "Attachez une carte Énergie de base de votre pile de défausse à lun de vos Pokémon de Banc.",
es: "Une 1 carta de Energía Básica de tu pila de descartes a 1 de tus Pokémon en Banca.",
it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia base dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.",
de: "Lege 1 Basis-Energiekarte aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card