1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

50 lines
752 B
TypeScript
Raw Permalink 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: "Gastly"
},
illustrator: "Nobuhiro Imagawa",
category: "Pokemon",
hp: 50,
types: ["Darkness"],
description: {
id: "Gastly melekat pada mangsanya dengan tubuh gasnya, lalu melemahkan mereka dengan mengirimkan racun sedikit demi sedikit melalui kulit mereka."
},
stage: "Basic",
attacks: [{
name: {
id: "Mengambil"
},
effect: {
id: "Ambil 1 kartu dari atas Deck sendiri."
},
cost: ["Colorless"]
}, {
name: {
id: "Api Hantu"
},
damage: 20,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card