1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

35 lines
360 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Lugia LEGEND",
fr: "Lugia LÉGENDAIRE",
},
illustrator: "Shinji Higuchi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
249,
],
hp: 130,
types: [
"Water",
],
suffix: "Legend",
}
export default card