1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

67 lines
1.2 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 "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "齒輪兒",
'zh-cn': "齒輪兒",
ja: "ギアル"
},
illustrator: "osare",
category: "Pokemon",
hp: 60,
types: ["Metal"],
description: {
'zh-tw': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。",
'zh-cn': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。",
ja: "2つの 体は 双子よりも 近い。 べつの 体同士だと いまいち うまく 噛み合わない。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "吸引",
'zh-cn': "吸引",
ja: "ひきつける"
},
effect: {
'zh-tw': "從自己的牌庫抽出1張卡。",
'zh-cn': "從自己的牌庫抽出1張卡。",
ja: "自分の山札を1枚引く。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "光束",
'zh-cn': "光束",
ja: "ビーム"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "H",
rarity: "Common",
dexId: [599]
}
export default card