mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
53
data/EX/Dragon/77.ts
Normal file
53
data/EX/Dragon/77.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Dragon'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Torchic",
|
||||
},
|
||||
illustrator: "Hironobu Yoshida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
255,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Firebreathing",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user