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

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

69
data-asia/SV/SV8a/200.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "リーフィアex",
id: "Leafeon ex",
'zh-tw': "葉伊布ex",
'zh-cn': "葉伊布ex"
},
illustrator: "Jiro Sasumo",
rarity: "None",
category: "Pokemon",
hp: 270,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
ja: "あおばのあらし",
id: "Badai Daun Segar",
'zh-tw': "綠葉風暴",
'zh-cn': "綠葉風暴"
},
damage: "60×",
effect: {
ja: "相手のポケモン全員についているエネルギーの数×60ダメージ。",
id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap Energi yang dikenakan pada semua Pokémon lawan.",
'zh-tw': "造成對手的所有寶可夢身上附加的能量的數量×60點傷害。",
'zh-cn': "造成對手的所有寶可夢身上附加的能量的數量×60點傷害。"
}
}, {
cost: ["Grass", "Fire", "Water"],
name: {
ja: "モスアゲート",
id: "Moss Agate",
'zh-tw': "苔紋瑪瑙",
'zh-cn': "苔紋瑪瑙"
},
damage: 230,
effect: {
ja: "自分のベンチポケモン全員のHPを、それぞれ「100」回復する。",
id: "Pulihkan HP semua Pokémon Cadangan sendiri masing-masing sejumlah 100.",
'zh-tw': "將自己的所有備戰寶可夢各恢復「100」HP。",
'zh-cn': "將自己的所有備戰寶可夢各恢復「100」HP。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card