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

65
data-asia/SV/SV9a/014.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "ギャロップ",
'zh-tw': "烈焰馬",
'zh-cn': "烈焰馬"
},
illustrator: "SIE NANAHARA",
rarity: "Uncommon",
category: "Pokemon",
dexId: [78],
hp: 110,
types: ["Fire"],
description: {
ja: "いちばん 脚が 速い ものが リーダー。 群れが 行く 場所や 走る 速度を 決めている。",
'zh-tw': "奔跑速度最快的烈焰馬 會成為首領,決定族群 前往的地點和奔跑速度。",
'zh-cn': "奔跑速度最快的烈焰馬 會成為首領,決定族群 前往的地點和奔跑速度。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "いそぎあし",
'zh-tw': "快走",
'zh-cn': "快走"
},
effect: {
ja: "自分の番に1回使える。自分の山札を1枚引く。",
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。",
'zh-cn': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。"
}
}],
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "ほのおのたてがみ",
'zh-tw': "火之鬃",
'zh-cn': "火之鬃"
},
damage: 60
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card