mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/Black & White/Legendary Treasures/102.ts
Normal file
70
data/Black & White/Legendary Treasures/102.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Legendary Treasures'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Lugia-EX",
|
||||
},
|
||||
illustrator: "Toyste Beach",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
249,
|
||||
],
|
||||
hp: 180,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
|
||||
suffix: "EX",
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Overflow",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent's Pokémon is Knocked Out by damage from an attack of this Pokémon, take 1 more Prize card.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Plasma Gale",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard a Plasma Energy attached to this Pokémon. If you can't discard a Plasma Energy, this attack does nothing.",
|
||||
},
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user