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

65 lines
1.3 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "スナバァ",
'zh-tw': "沙丘娃"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Asako Ito",
dexId: [769],
hp: 90,
types: ["Psychic"],
description: {
ja: "獲物の 目を 砂で 潰し その隙に 近づこうとするが 動きが 遅いので 逃げられる。",
'zh-tw': "會用沙子攻擊獵物的眼睛後 趁機接近,但卻總是因為 行動緩慢而讓獵物逃走。"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "すなかけ",
'zh-tw': "潑沙"
},
damage: 10,
effect: {
ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。",
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式時對手擲1次硬幣。若為反面則那個招式失敗。"
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "ホロウショット",
'zh-tw': "陰森射擊"
},
damage: 30
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card