mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
54 lines
970 B
TypeScript
54 lines
970 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Sc1a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "伽勒爾 死神板"
|
||
},
|
||
|
||
illustrator: "TOKIYA",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "被注入了強烈詛咒的古代繪畫在吸進哭哭面具的靈魂後就開始動起來了。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "散佈怨恨"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將與這隻「伽勒爾 死神板」身上放置的傷害指示物的數量×2個的相同數量的傷害指示物,以任意方式放置於對手的寶可夢身上。"
|
||
},
|
||
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "瘋狂之錘"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "這隻寶可夢也受到30點傷害。"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Fighting", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |