mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
fix: correct data for sets tk-ex-latia, tk-ex-latio, tk-ex-m, tk-ex-p, tk-bw-e, tk-bw-z (#726)
Co-authored-by: Avior <github@avior.me>
This commit is contained in:
53
data/Trainer kits/EX trainer Kit 2 (Minun)/4.ts
Normal file
53
data/Trainer kits/EX trainer Kit 2 (Minun)/4.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit 2 (Minun).ts'
|
||||
|
||||
const card: Card = {
|
||||
dexId: [58],
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Growlithe"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
damage: 10
|
||||
}, {
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Flame Tail"
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user