1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

62
data-asia/SV/SV7/057.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "頑皮熊貓",
'zh-cn': "頑皮熊貓",
ja: "ヤンチャム"
},
illustrator: "Tomomi Ozaki",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "會模仿自己敬為頭領的 流氓熊貓,向牠學習戰鬥 及捕捉獵物的方法。",
'zh-cn': "會模仿自己敬為頭領的 流氓熊貓,向牠學習戰鬥 及捕捉獵物的方法。",
ja: "親分と 慕う ゴロンダの 真似を する ことで 戦い方や 獲物の 捕まえ方を 学ぶ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "瞪眼",
'zh-cn': "瞪眼",
ja: "にらみつける"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
'zh-cn': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "踢倒",
'zh-cn': "踢倒",
ja: "けたぐり"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Common",
dexId: [674]
}
export default card