1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/120.ts

43 lines
709 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Absol"
},
illustrator: "kodama",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
description: {
en: "Swift as the wind, Absol races through fields and\nmountains. Its curved, bow-like horn is acutely\nsensitive to the warning signs of natural disasters."
},
stage: "Basic",
attacks: [{
name: {
en: "Leap Over"
},
cost: ["Darkness"],
effect: {
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon."
}
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card