mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 06:39:50 +00:00
35
data/Trainer kits/EX trainer Kit (Latios)/2.ts
Normal file
35
data/Trainer kits/EX trainer Kit (Latios)/2.ts
Normal file
@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latios)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Latios"
|
||||
},
|
||||
|
||||
illustrator: "Kyoko Koizumi",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gather Energy"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, search your deck for a basic Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Dragon Claw"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user