mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
44 lines
503 B
TypeScript
44 lines
503 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../DP Black Star Promos'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Arceus",
|
|
},
|
|
illustrator: "Shizurow",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
493,
|
|
],
|
|
hp: 120,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "LEVEL-UP",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Multitype",
|
|
},
|
|
effect: {
|
|
en: "Arceus LV.X's type is the same type as its previous Level.",
|
|
},
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|