1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

68
data-asia/S/S12/065.ts Normal file
View File

@ -0,0 +1,68 @@
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