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

79 lines
1020 B
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: "neo2-66",
localId: 66,
// Card informations
name: {
en: "Tyrogue",
},
hp: 30,
type: [
Type.FIGHTING,
],
dexId: 236,
image: {
low: {
en: "https://assets.tcgdex.net/en/neo/neo2/66/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo2/66/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 37,
name: "Miki Tanaka"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Smash Punch",
},
text: {
en: "Flip a coin. If tails, this attack does nothing.",
},
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Neo Discovery",
code: "neo2"
}
}
export default card