mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
56 lines
1.0 KiB
TypeScript
56 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SI"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "伽勒爾 死神板"
|
||
},
|
||
|
||
illustrator: "KEIICHIRO ITO",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "絕對不能觸摸牠影子般的身體,否則牠會讓你看到 印刻在牠畫中的恐怖記憶。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "怨恨石板"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的「寶可夢【VMAX】」招式的傷害時,將與受到的傷害相同數值的傷害指示物,放置於使用招式的寶可夢身上。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "能量壓制"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。"
|
||
},
|
||
|
||
damage: "60+",
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |