mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
97 lines
1.3 KiB
TypeScript
97 lines
1.3 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: "pop8-5",
|
||
localId: 5,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Yanmega",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 469,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/pop/pop8/5/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/pop/pop8/5/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Yanma",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "Ken Sugimori",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS
|
||
],
|
||
name: {
|
||
en: "Supersonic",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Air Slash",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If tails, discard an Energy attached to Yanmega.",
|
||
},
|
||
damage: 70
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "POP Series 8",
|
||
code: "pop8"
|
||
}
|
||
}
|
||
|
||
export default card
|