mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* 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
105 lines
2.7 KiB
TypeScript
105 lines
2.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
fr: "Pashmilla",
|
||
en: "Cinccino",
|
||
es: "Cinccino",
|
||
it: "Cinccino",
|
||
pt: "Cinccino",
|
||
de: "Chillabell"
|
||
},
|
||
|
||
illustrator: "Shibuzoh.",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 90,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
fr: "Faire Avec",
|
||
en: "Make Do",
|
||
es: "Apañárselas",
|
||
it: "Fare a Meno",
|
||
pt: "Make Do",
|
||
de: "Notbehelf"
|
||
},
|
||
effect: {
|
||
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.",
|
||
en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw 2 cards.",
|
||
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: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw 2 cards.",
|
||
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: {
|
||
fr: "Assistance Énergétique",
|
||
en: "Energy Assist",
|
||
es: "Asistencia de Energía",
|
||
it: "Assistienergia",
|
||
pt: "Energy Assist",
|
||
de: "Energieförderung"
|
||
},
|
||
effect: {
|
||
fr: "Attachez une carte Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.",
|
||
en: "Attach a basic Energy card from your discard pile to 1 of your Benched Pokémon.",
|
||
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: "Attach a basic Energy card from your discard pile to 1 of your Benched Pokémon.",
|
||
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,
|
||
|
||
evolveFrom: {
|
||
en: "Minccino",
|
||
fr: "Chinchidou"
|
||
},
|
||
|
||
description: {
|
||
en: "Its body secrets oil that this Pokémon spreads over its nest as a coating to protect it from dust. Cinccino won't tolerate even a speck of the stuff."
|
||
},
|
||
|
||
dexId: [573],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|