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

62 lines
1.6 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "アマージョex",
'zh-tw': "甜冷美后ex",
th: "อมาโจex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 310,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Grass"],
name: {
ja: "アイシクルソール",
'zh-tw': "冰柱之踢",
th: "ฝ่าเท้าแท่งน้ำแข็ง"
},
effect: {
ja: "相手のポケモン1匹に、そのポケモンの残りHPが「30」になるように、ダメカンをのせる。",
'zh-tw': "在對手的1隻寶可夢身上放置傷害指示物直到那隻寶可夢的剩餘HP變為「30」為止。",
th: "วางตัวนับแดเมจ บนโปเกมอนฝ่ายตรงข้าม 1 ตัว ให้ HP ของโปเกมอนนั้นเหลือเท่ากับ [30]"
}
}, {
cost: ["Grass", "Grass"],
name: {
ja: "トロピカルキック",
'zh-tw': "熱帶踢",
th: "ทรอปิคัลคิก"
},
damage: 180,
effect: {
ja: "このポケモンのHPを「30」回復し、特殊状態もすべて回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP特殊狀態也全部恢復。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30] รักษาสภาวะผิดปกติทั้งหมดด้วย"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card