1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

65
data-asia/SV/SV6/054.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "シロデスナ",
'zh-tw': "噬沙堡爺"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Uta",
dexId: [770],
hp: 150,
types: ["Psychic"],
description: {
ja: "生命エネルギーを 吸い取り 干からびた ものたちの 骨を 腕の へこみから 発射する。",
'zh-tw': "會把對手的生命能量 吸得精光,然後把骨骸 從臂上的凹洞發射出去。"
},
stage: "Stage1",
attacks: [{
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "すなかけ",
'zh-tw': "潑沙"
},
damage: 60,
effect: {
ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。",
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式時對手擲1次硬幣。若為反面則那個招式失敗。"
}
}, {
cost: ["Psychic", "Colorless", "Colorless", "Colorless"],
name: {
ja: "サンドホロウ",
'zh-tw': "沙之陰森"
},
damage: 150
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 4,
regulationMark: "H"
}
export default card