1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 23:52:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

82 lines
1.2 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-55",
localId: 55,
// Card informations
name: {
en: "Buneary",
},
hp: 50,
type: [
Type.COLORLESS,
],
dexId: 427,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/55/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/55/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 24,
name: "sui"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Bunny Hop",
},
text: {
en: "Choose 1 of your opponent's Pokémon that doesn't have any damage counters on it. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+10"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card