mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 07:32:11 +00:00
95 lines
1.3 KiB
TypeScript
95 lines
1.3 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: "pl4-SH12",
|
|
localId: "SH12",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Shinx",
|
|
},
|
|
|
|
hp: 50,
|
|
|
|
type: [
|
|
Type.LIGHTNING,
|
|
],
|
|
|
|
dexId: 403,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl4/SH12/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl4/SH12/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 24,
|
|
name: "sui"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 315,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Star Barrier",
|
|
},
|
|
text: {
|
|
en: "As long as Shinx has any Energy attached to it, Shinx has no Weakness.",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.LIGHTNING
|
|
],
|
|
name: {
|
|
en: "Payback",
|
|
},
|
|
text: {
|
|
en: "If your opponent has only 1 Prize card left, this attack does 10 damage plus 30 more damage.",
|
|
},
|
|
damage: 10
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+10"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.METAL,
|
|
value: "-20"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Arceus",
|
|
code: "pl4"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|