mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
53
data/Base/Team Rocket/64.ts
Normal file
53
data/Base/Team Rocket/64.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Team Rocket'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Ponyta",
|
||||
},
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
77,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Ember",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard 1 Energy card attached to Ponyta in order to use this attack.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user