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:
66
data/EX/Team Magma vs Team Aqua/16.ts
Normal file
66
data/EX/Team Magma vs Team Aqua/16.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Team Magma vs Team Aqua'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Team Aqua's Sealeo",
|
||||
},
|
||||
illustrator: "T. Honda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
364,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
en: "Aqua Trance",
|
||||
},
|
||||
effect: {
|
||||
en: "At the end of your opponent's next turn, the Defending Pokémon is now Asleep.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Super Hypnoblast",
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is Asleep, this attack does 30 damage plus 20 more damage.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user