1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

69 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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