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

feat: Add SV9a (#672)

This commit is contained in:
2025-05-24 20:35:21 +02:00
committed by GitHub
parent 90d12fc9b6
commit db5863caee
93 changed files with 5333 additions and 0 deletions

64
data-asia/SV/SV9a/044.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "シロナのガブリアスex",
'zh-tw': "<竹蘭的>烈咬陸鯊ex",
'zh-cn': "<竹蘭的>烈咬陸鯊ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "スクリューダイブ",
'zh-tw': "螺旋俯衝",
'zh-cn': "螺旋俯衝"
},
damage: 100,
effect: {
ja: "のぞむなら、自分の手札が6枚になるように、山札を引く。",
'zh-tw': "若希望從牌庫抽卡直到自己的手牌滿6張為止。",
'zh-cn': "若希望從牌庫抽卡直到自己的手牌滿6張為止。"
}
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "リューノバスター",
'zh-tw': "龍之爆發",
'zh-cn': "龍之爆發"
},
damage: 260,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。",
'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。",
'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 0,
regulationMark: "I"
}
export default card