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

69
data-asia/SV/SV9a/085.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "メガヤンマex",
'zh-tw': "遠古巨蜓ex",
'zh-cn': "遠古巨蜓ex"
},
illustrator: "Tonji Matsuno",
rarity: "None",
category: "Pokemon",
hp: 280,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "バズブースト",
'zh-tw': "振翅高飛",
'zh-cn': "振翅高飛"
},
effect: {
ja: "自分の番に、このポケモンがベンチからバトル場に出たとき、1回使える。自分の山札から「基本エネルギー」を3枚まで選び、このポケモンにつける。そして山札を切る。",
'zh-tw': "在自己的回合從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。從自己的牌庫選擇最多3張「基本【草】能量」卡附於這隻寶可夢身上。並且重洗牌庫。",
'zh-cn': "在自己的回合從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。從自己的牌庫選擇最多3張「基本【草】能量」卡附於這隻寶可夢身上。並且重洗牌庫。"
}
}],
attacks: [{
cost: ["Grass", "Grass", "Grass", "Colorless"],
name: {
ja: "ジェットサイクロン",
'zh-tw': "噴射旋風",
'zh-cn': "噴射旋風"
},
damage: 210,
effect: {
ja: "このポケモンについているエネルギーを3個選び、ベンチポケモン1匹につけ替える。",
'zh-tw': "選擇3個這隻寶可夢身上附加的能量改附於1隻備戰寶可夢身上。",
'zh-cn': "選擇3個這隻寶可夢身上附加的能量改附於1隻備戰寶可夢身上。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card