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

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

55
data-asia/SV/SV9/047.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ヨーギラス",
'zh-tw': "幼基拉斯",
'zh-cn': "幼基拉斯"
},
illustrator: "Dsuke",
rarity: "Common",
category: "Pokemon",
dexId: [246],
hp: 70,
types: ["Fighting"],
description: {
ja: "地面 深くで 生まれ 山ほどの 土を 食べ終わると 体を つくるため サナギになる。",
'zh-tw': "誕生在地底深處。 當牠吃完滿山的土壤後, 就會為了成長而變成蛹。",
'zh-cn': "誕生在地底深處。 當牠吃完滿山的土壤後, 就會為了成長而變成蛹。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かみくだく",
'zh-tw': "咬碎",
'zh-cn': "咬碎"
},
damage: 20,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。",
'zh-cn': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card