1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

50 lines
829 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Absol ex"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
id: "Penglihatan Masa Depan"
},
effect: {
id: "Lihat 3 kartu dari atas Deck sendiri atau lawan, tukar urutan kartu sesukanya, lalu kembalikan ke atas Deck."
},
cost: ["Darkness"]
}, {
name: {
id: "Cursed Slug"
},
effect: {
id: "Jika jumlah Kartu Pegangan lawan adalah 3 lembar atau kurang, kerusakan yang diberikan bertambah sejumlah 120."
},
damage: "100+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card