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

58 lines
947 B
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 "../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