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

68 lines
1.5 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "可可多拉",
th: "โคโคโดรา",
ja: "ココドラ"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
'zh-tw': "保護牠身體的鋼鐵盔甲,是由牠吃下的鐵礦石以及 偶爾吃下的鐵軌所製成的。",
th: "กินแร่เหล็กหรือบางครั้งก็รางรถไฟเพื่อสร้างเกราะเหล็กกล้าปกป้องร่างกาย",
ja: "鉄鉱石や たまに 鉄道の レールを 食べて 体を 守る 鋼の 鎧が つくられる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞",
th: "กระแทก",
ja: "ぶつかる"
},
damage: 10,
cost: ["Metal"]
}, {
name: {
'zh-tw': "撞一下",
th: "จุ้นจ้านหน่อย",
ja: "ちょっとつっこむ"
},
effect: {
'zh-tw': "這隻寶可夢也受到10點傷害。",
th: "โปเกมอนตัวนี้ก็จะได้รับแดเมจ 10 ด้วย",
ja: "このポケモンにも10ダメージ。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [304]
}
export default card