1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

43 lines
663 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Azelf"
},
illustrator: "AKIRA EGAWA",
rarity: "Two Diamond",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
en: "Known as \"The Being of Willpower.\" It sleeps at the<br />bottom of a lake to keep the world in balance."
},
stage: "Basic",
attacks: [{
name: {
en: "Psychic Arrow"
},
cost: ["Psychic"],
effect: {
en: "This attack does 20 damage to 1 of your opponent's Pokémon."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card