mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 06:39:50 +00:00
40
data/Trainer kits/HS trainer Kit (Gyarados)/20.ts
Normal file
40
data/Trainer kits/HS trainer Kit (Gyarados)/20.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../HS trainer Kit (Gyarados)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gyarados"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Once it appears, it goes on a rampage. It remains enraged until it demolishes everything around it."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Hydro Splash"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
name: {
|
||||
en: "Hyper Beam"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy card attached to the Defending Pokémon."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user