1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +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
1011 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",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo2/66/high",
},
},
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