mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
91 lines
1.3 KiB
TypeScript
91 lines
1.3 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: "neo1-54",
|
||
localId: 54,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Chikorita",
|
||
},
|
||
|
||
hp: 50,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 152,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/neo/neo1/54/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/neo/neo1/54/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 5,
|
||
name: "Ken Sugimori"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Growl",
|
||
},
|
||
text: {
|
||
en: "If the Defending Pokémon attacks Chikorita during your opponent's next turn, any damage done to Chikorita is reduced by 10 (before applying Weakness and Resistance). (Benching or evolving either Pokémon ends this effect.)",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Razor Leaf",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Neo Genesis",
|
||
code: "neo1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|