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

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