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

62 lines
1.9 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 "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "豆豆鴿",
th: "มาเมพาโตะ"
},
illustrator: "Mékayu",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
description: {
'zh-tw': "會出現在人類生活的地方。一旦撒出飼料就會有好幾百隻 豆豆鴿聚集而來,千萬要小心。",
th: "ปรากฏตัวในสถานที่ที่คนอาศัย เมื่อโปรยอาหารจะมารวมกันเป็นหลายร้อยตัว ต้องระวังให้ดี"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "緊急進化",
th: "วิวัฒนาการฉุกเฉิน"
},
effect: {
'zh-tw': "若這隻寶可夢的剩餘HP為「30」以下則在自己的回合時可使用1次。從自己的牌庫選擇1張「高傲雉雞包含『寶可夢【ex】』放置於這隻「豆豆鴿」身上完成進化。並且重洗牌庫。",
th: "ถ้าโปเกมอนนี้มี HP เหลือน้อยกว่าหรือเท่ากับ [30] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [เคนโฮโล (รวม [โปเกมอน【ex】])] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบน [มาเมพาโตะ] นี้เพื่อวิวัฒนาการ แล้วสับสำรับการ์ด"
}
}],
attacks: [{
name: {
'zh-tw': "起風",
th: "เรียกลม"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card