1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

60 lines
1.2 KiB
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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "Nのギアル",
'zh-tw': "N的齒輪兒",
'zh-cn': "N的齒輪兒"
},
illustrator: "Saboteri",
rarity: "Common",
category: "Pokemon",
dexId: [599],
hp: 60,
types: ["Metal"],
description: {
ja: "2つの 体は 双子よりも 近い。 べつの 体同士だと いまいち うまく 噛み合わない。",
'zh-tw': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。",
'zh-cn': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ダブルスピン",
'zh-tw': "雙重旋轉",
'zh-cn': "雙重旋轉"
},
damage: "10×",
effect: {
ja: "コインを2回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
'zh-cn': "擲2次硬幣造成正面出現的次數×10點傷害。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card