mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
94 lines
1.2 KiB
TypeScript
94 lines
1.2 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'
|
||
import set from '../../../sets/swsh/swsh4'
|
||
|
||
|
||
const card: Card = {
|
||
// Card Global Informations
|
||
id: "swsh4-3",
|
||
|
||
localId: 3,
|
||
|
||
name: {
|
||
en: "Beedrill",
|
||
},
|
||
|
||
tags: [
|
||
],
|
||
|
||
illustrator: "KEIICHIRO ITO",
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set,
|
||
|
||
|
||
// Card Pokémon Informations
|
||
evolveFrom: {
|
||
en: "Kakuna",
|
||
},
|
||
|
||
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
abilities: [
|
||
{
|
||
type: AbilityType.TALENT,
|
||
|
||
name: {
|
||
en: "Elusive Master",
|
||
},
|
||
|
||
text: {
|
||
en: "Once during your turn, if this Pokémon is the last card in your hand, you may play it onto your Bench. If you do, draw 3 cards.",
|
||
},
|
||
|
||
}
|
||
,
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
name: {
|
||
en: "Sharp Sting",
|
||
},
|
||
|
||
|
||
damage: 120,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: Type.FIRE,
|
||
|
||
value: "×2",
|
||
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
// Card Trainer/Energy informations
|
||
|
||
}
|
||
|
||
export default card |