1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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/045.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: "Narumi Sato",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
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: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Common",
dexId: [926]
}
export default card