mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
36 lines
495 B
TypeScript
36 lines
495 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../EX trainer Kit (Latias)'
|
||
|
||
const card: Card = {
|
||
dexId: [256],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Combusken"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Flare"
|
||
},
|
||
|
||
damage: 20
|
||
}, {
|
||
name: {
|
||
en: "Double Kick"
|
||
},
|
||
|
||
damage: "40×",
|
||
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 40 damage times the number of heads."
|
||
}
|
||
}]
|
||
}
|
||
|
||
export default card |