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

67 lines
1.5 KiB
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "シロデスナex",
'zh-tw': "噬沙堡爺ex",
'zh-cn': "噬沙堡爺ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 280,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "すなじごく",
'zh-tw': "流沙地獄",
'zh-cn': "流沙地獄"
},
damage: 160,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
}
}, {
cost: ["Water", "Psychic", "Fighting"],
name: {
ja: "バライトジェイル",
'zh-tw': "重晶石之獄",
'zh-cn': "重晶石之獄"
},
effect: {
ja: "相手のベンチポケモン全員に、それぞれ残りHPが「100」になるように、ダメカンをのせる。",
'zh-tw': "在對手的所有備戰寶可夢身上放置傷害指示物直到各自的剩餘HP變為「100」為止。",
'zh-cn': "在對手的所有備戰寶可夢身上放置傷害指示物直到各自的剩餘HP變為「100」為止。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 4,
regulationMark: "H"
}
export default card