1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

68
data-asia/SV/SV7/049.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "嘎啦嘎啦",
'zh-cn': "嘎啦嘎啦",
ja: "ガラガラ"
},
illustrator: "cochi8i",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "克服了傷痛後進化得 更強更壯。會把骨頭當作 武器,勇敢地與敵人交鋒。",
'zh-cn': "克服了傷痛後進化得 更強更壯。會把骨頭當作 武器,勇敢地與敵人交鋒。",
ja: "悲しみを 乗りこえて たくましく 進化した。 骨を 武器にして 勇敢に 敵と 渡り合う。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "叫聲",
'zh-cn': "叫聲",
ja: "なきごえ"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-40」點。",
'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-40」點。",
ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-40」される。"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "骨之復仇",
'zh-cn': "骨之復仇",
ja: "ほねリベンジ"
},
effect: {
'zh-tw': "若自己的備戰區的「卡拉卡拉」身上放置有傷害指示物則增加120點傷害。",
'zh-cn': "若自己的備戰區的「卡拉卡拉」身上放置有傷害指示物則增加120點傷害。",
ja: "自分のベンチの「カラカラ」にダメカンがのっているなら、120ダメージ追加。"
},
damage: "60",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Uncommon",
dexId: [105]
}
export default card