1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

78 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'
const card: Card = {
// ids
id: "basep-35",
localId: 35,
// Card informations
name: {
en: "Pichu",
},
hp: 30,
type: [
Type.LIGHTNING,
],
dexId: 172,
image: {
low: {
en: "https://assets.tcgdex.net/en/base/basep/35/low",
},
high: {
en: "https://assets.tcgdex.net/en/base/basep/35/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Let's Play!",
},
text: {
en: "Search your deck for a Baby Pokémon card and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
},
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Wizards Black Star Promos",
code: "basep"
}
}
export default card