1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

54
data-asia/SV/SV10/048.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>幼基拉斯",
'zh-cn': "<火箭隊的>幼基拉斯",
ja: "ロケット団のヨーギラス"
},
illustrator: "Kuroimori",
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枚トラッシュする。"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [246]
}
export default card