mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
96 lines
1.4 KiB
TypeScript
96 lines
1.4 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "swsh1-145",
|
||
localId: 145,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Minccino",
|
||
fr: "Chinchidou",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/swsh/swsh1/145/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/swsh/swsh1/145/low.png",
|
||
}
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 31,
|
||
name: "Sekio"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Glance",
|
||
fr: "Coup d’Œil",
|
||
},
|
||
text: {
|
||
en: "Look at the top card of your opponent’s deck.",
|
||
fr: "Regardez la carte du dessus du deck de votre adversaire.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Tail Slap",
|
||
fr: "Plumo-Queue",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. This attack does 20 damage for each heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.",
|
||
},
|
||
damage: "20×"
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Sword & Shield",
|
||
code: "swsh1"
|
||
}
|
||
}
|
||
|
||
export default card
|