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

62
data-asia/SV/SV7a/028.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "螺釘地鼠",
'zh-cn': "螺釘地鼠",
ja: "モグリュー"
},
illustrator: "Ounishi",
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: 10,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Common",
dexId: [529]
}
export default card