mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
* feat: Add A1a Signed-off-by: Avior <git@avior.me> * fix: test failing Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
40 lines
605 B
TypeScript
40 lines
605 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Elgyem"
|
|
},
|
|
|
|
illustrator: "Kouki Saitou",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Psychic"],
|
|
|
|
description: {
|
|
en: "If this Pokémon stands near a TV, strange scenery<br />will appear on the screen. That scenery is said<br />to be from its home."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Headbutt"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Psychic"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Darkness",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card |