mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
44 lines
690 B
TypeScript
44 lines
690 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Charmander"
|
|
},
|
|
|
|
illustrator: "Naoyo Kimura",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fire"],
|
|
|
|
description: {
|
|
en: "It has a preference for hot things. When it rains,<br />steam is said to spout from the tip of its tail."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Ember"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Fire"],
|
|
|
|
effect: {
|
|
en: "Discard a <span class=\"energy-text energy-text--type-fire\"></span> Energy from this Pokémon."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Water",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |