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

67 lines
2.1 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 "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "オトシドリex",
'zh-tw': "下石鳥ex",
th: "โอโตชิโดริex"
},
illustrator: "PLANETA Mochizuki",
rarity: "Double rare",
category: "Pokemon",
hp: 200,
types: ["Colorless"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ファストキャリー",
'zh-tw': "急速輸送",
th: "เฟิสต์แครี"
},
effect: {
ja: "このワザは、先攻プレイヤーの最初の番でも使える。自分の山札からたねポケモンを3枚まで選び、ベンチに出す。そして山札を切る。",
'zh-tw': "這個招式可在先攻玩家的最初回合使用。從自己的牌庫選擇最多3張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "ท่าต่อสู้นี้ แม้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเริ่มก่อนก็สามารถใช้ได้ เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "シャドーウインド",
'zh-tw': "暗影之風",
th: "ชาโดว์วินด์"
},
damage: 130,
effect: {
ja: "のぞむなら、このポケモンと、ついているすべてのカードを、手札にもどす。",
'zh-tw': "若希望,將這隻寶可夢與附加的卡,全部放回手牌。",
th: "หากต้องการ นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ กลับขึ้นมือ"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card