mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add Poké Card Creator Pack cards (#184)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
61
data/EX/Poké Card Creator Pack/3.ts
Normal file
61
data/EX/Poké Card Creator Pack/3.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Poké Card Creator Pack'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Torchic"
|
||||
},
|
||||
illustrator: "May Do",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
255,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Super Singe"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Burned."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Flamethrower"
|
||||
},
|
||||
effect: {
|
||||
en: "Discard a Fire Energy card attached to Torchic."
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
}
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water"
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user