mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
58 lines
947 B
TypeScript
58 lines
947 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S9"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "齒輪兒",
|
||
ja: "ギアル"
|
||
},
|
||
|
||
illustrator: "OKACHEKE",
|
||
category: "Pokemon",
|
||
hp: 50,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
'zh-tw': "2個身體比雙胞胎還要親近。要是換成別的齒輪兒, 就沒有辦法好好咬合。",
|
||
ja: "2つの 体は 双子よりも 近い。 べつの 体同士だと いまいち うまく 噛み合わない。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "夾住",
|
||
ja: "はさむ"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Metal"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "迴轉攻擊",
|
||
ja: "かいてんアタック"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Metal", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "F",
|
||
rarity: "Common",
|
||
dexId: [599]
|
||
}
|
||
|
||
export default card |