1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

69 lines
2.4 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "オドリドリ",
'zh-tw': "花舞鳥",
th: "โอโดริโดริ"
},
illustrator: "Saya Tsuruta",
rarity: "Common",
category: "Pokemon",
dexId: [741],
hp: 90,
types: ["Lightning"],
description: {
ja: "元気 かつ 陽気な ダンスが 子どもたちに 人気の スタイルだが パルデアでは あまり 見かけない。",
'zh-tw': "這個風格的舞蹈歡樂有活力,相當受到孩子們的歡迎,但在帕底亞卻很少見。",
th: "เป็นที่นิยมในหมู่เด็ก ๆ เพราะมีท่วงท่าในการเต้นรำที่กระฉับกระเฉงและร่าเริง แต่กลับไม่ค่อยพบเห็นมันในพัลเดีย"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "チアアップ",
'zh-tw': "鼓舞",
th: "เชียร์อัป"
},
effect: {
ja: "自分の手札をすべて山札にもどして切る。その後、おたがいのベンチポケモンの数ぶん、山札を引く。",
'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出與雙方的備戰寶可夢相同數量的卡。",
th: "นำการ์ดบนมือฝ่ายเราทั้งหมดใส่กลับไปในสำรับการ์ดแล้วสับ หลังจากนั้น จั่วการ์ดจากสำรับการ์ด ตามจำนวนโปเกมอนบนเบนช์ของทั้งสองฝ่าย"
}
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "ショックウェーブ",
'zh-tw': "衝擊波",
th: "ช็อกเวฟ"
},
damage: 50,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card