mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
94 lines
1.7 KiB
TypeScript
94 lines
1.7 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "swsh1-147",
|
||
localId: 147,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Cinccino",
|
||
fr: "Pashmilla",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/147/low",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/147/low",
|
||
}
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Minccino",
|
||
fr: "Chinchidou",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "sui",
|
||
|
||
abilities: [{
|
||
id: -1,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Make Do",
|
||
fr: "Faire Avec",
|
||
},
|
||
text: {
|
||
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.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Energy Assist",
|
||
fr: "Assistance Énergétique",
|
||
},
|
||
text: {
|
||
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 à l’un de vos Pokémon de Banc.",
|
||
},
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|