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

71 lines
2.5 KiB
TypeScript
Raw Permalink 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: "オクタン",
'zh-tw': "章魚桶",
th: "ออคตัน"
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
dexId: [224],
hp: 110,
types: ["Water"],
description: {
ja: "頑丈な 石頭。 吸盤つきの 脚を 絡ませ ひたすら 頭で 打ちすえる。",
'zh-tw': "有著堅硬結實的腦袋。會用帶有吸盤的腳纏住對手, 然後不停地用頭猛撞。",
th: "มีหัวแข็งแรงเหมือนก้อนหิน พันด้วยขาที่มีปุ่มดูดแล้วใช้หัวทุบตีแบบไม่ยั้ง"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "きゅうばんドロー",
'zh-tw': "吸盤抽出",
th: "ปุ่มดูดขอจั่ว"
},
effect: {
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分の山札を3枚引く。",
'zh-tw': "在自己的回合從手牌使出這張卡並完成進化時可使用1次。從自己的牌庫抽出3張卡。",
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา"
}
}],
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "えんまくだん",
'zh-tw': "煙幕彈",
th: "กระสุนพ่นควัน"
},
damage: 60,
effect: {
ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。",
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式時對手擲1次硬幣。若為反面則那個招式失敗。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม เมื่อโปเกมอนที่ได้รับท่าต่อสู้นี้จะใช้ท่าต่อสู้ ฝ่ายตรงข้ามทอยเหรียญ 1 ครั้ง ถ้าออกก้อยท่าต่อสู้นั้นจะล้มเหลว"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card