1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

65
data-asia/SV/SV6/074.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "コドラ",
'zh-tw': "可多拉"
},
category: "Pokemon",
rarity: "Common",
illustrator: "takashi shiraishi",
dexId: [305],
hp: 110,
types: ["Metal"],
description: {
ja: "コドラが 暮らす 山は 湧き水と 鉄鉱石が 豊富なので 人と 争いに なることも 多かった。",
'zh-tw': "可多拉棲息的山區有 豐富的泉水和鐵礦石, 因此常會與人類起紛爭。"
},
stage: "Stage1",
attacks: [{
cost: ["Metal"],
name: {
ja: "こうてつタックル",
'zh-tw': "鋼鐵衝撞"
},
damage: 40,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。"
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "メタルクロー",
'zh-tw': "金屬爪"
},
damage: 60
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card