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

52 lines
766 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "鹽石巨靈ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 340,
types: ["Fighting"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "鹽味之軀"
},
effect: {
'zh-tw': "這隻寶可夢不會陷入特殊狀態。"
}
}],
attacks: [{
name: {
'zh-tw': "障礙之錘"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-60」點。"
},
damage: 170,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card