mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
73 lines
1.0 KiB
TypeScript
73 lines
1.0 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: {
|
||
fr: "Miaouss VMAX",
|
||
},
|
||
|
||
hp: 300,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
tags: [
|
||
Tag.VMAX,
|
||
],
|
||
|
||
evolveFrom: {
|
||
fr: "Miaouss V",
|
||
},
|
||
|
||
illustrator: {
|
||
id: 149,
|
||
name: "aky CG Works"
|
||
},
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
],
|
||
name: {
|
||
fr: "Pactole G-MAX",
|
||
},
|
||
text: {
|
||
fr: "Piochez 3 cartes."
|
||
},
|
||
damage: 200
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set,
|
||
}
|
||
|
||
export default card
|