mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
68 lines
1.1 KiB
TypeScript
68 lines
1.1 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'
|
||
import path from 'path'
|
||
import set from '../../../sets/swsh/swshp'
|
||
|
||
const localId = path.basename(__filename).split(".")[0]
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: `swshp-${localId}`,
|
||
localId: localId,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Gossifleur",
|
||
fr: "Tournicoton",
|
||
},
|
||
|
||
hp: 50,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 15,
|
||
name: "Naoki Saito"
|
||
},
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Sing",
|
||
fr: "Berceuse",
|
||
},
|
||
text: {
|
||
en: "Your opponnent's Active Pokémon os now Asleep.",
|
||
fr: "LE Pokémon Actif de votre adversaire est maintenant Endormi."
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set,
|
||
}
|
||
|
||
export default card
|