mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Added most sets Signed-off-by: Avior <github@avior.me> * Fixed cards missing name Signed-off-by: Avior <github@avior.me>
65 lines
778 B
TypeScript
65 lines
778 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Macdonald\'s Collection 2021'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Cyndaquil",
|
||
fr: "Héricendre",
|
||
},
|
||
|
||
illustrator: "kirisAki",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
155,
|
||
],
|
||
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hammer In",
|
||
fr: "Enfoncement",
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "It has a timid nature. If it is startled, the flames on its back burn more vigorously."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|