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

63
data-asia/SV/SV7/112.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "溶食獸",
'zh-cn': "溶食獸",
ja: "ゴクリン"
},
illustrator: "Jerky",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "心臟和大腦都很小, 身體的大部分是胃。 會分泌出什麼都能溶解的胃液。",
'zh-cn': "心臟和大腦都很小, 身體的大部分是胃。 會分泌出什麼都能溶解的胃液。",
ja: "心臓や 脳みそは 小さく 体の 大部分が 胃袋。 なんでも 溶かす 胃液を 出す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "口水",
'zh-cn': "口水",
ja: "よだれ"
},
damage: 10,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "毒之氣息",
'zh-cn': "毒之氣息",
ja: "どくのいき"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
'zh-cn': "將對手的戰鬥寶可夢【中毒】。",
ja: "相手のバトルポケモンをどくにする。"
},
damage: 30,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
dexId: [316],
rarity: "None"
}
export default card