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

69
data-asia/SV/SV7/062.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "吞食獸",
'zh-cn': "吞食獸",
ja: "マルノーム"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
'zh-tw': "就連輪胎都是整個吞掉。 會從身上的毛孔分泌出 帶有劇毒的體液。",
'zh-cn': "就連輪胎都是整個吞掉。 會從身上的毛孔分泌出 帶有劇毒的體液。",
ja: "タイヤも ひと口で 丸呑み。 体の 毛穴から 猛毒の 体液を 分泌する。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "張大嘴",
'zh-cn': "張大嘴",
ja: "パックンマウス"
},
effect: {
'zh-tw': "若這隻寶可夢身上附加的能量的數量比對手的戰鬥寶可夢身上附加的能量的數量多則增加160點傷害。",
'zh-cn': "若這隻寶可夢身上附加的能量的數量比對手的戰鬥寶可夢身上附加的能量的數量多則增加160點傷害。",
ja: "このポケモンについているエネルギーの数が、相手のバトルポケモンについているエネルギーの数より多いなら、160ダメージ追加。"
},
damage: "10",
cost: ["Darkness"]
}, {
name: {
'zh-tw': "毒液一擊",
'zh-cn': "毒液一擊",
ja: "ベノムヒット"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
'zh-cn': "將對手的戰鬥寶可夢【中毒】。",
ja: "相手のバトルポケモンをどくにする。"
},
damage: 100,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Uncommon",
dexId: [317]
}
export default card