1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

70
data-asia/SV/SV9/065.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "Nのギギアル",
'zh-tw': "N的齒輪組",
'zh-cn': "N的齒輪組"
},
illustrator: "KEIICHIRO ITO",
rarity: "Common",
category: "Pokemon",
dexId: [600],
hp: 90,
types: ["Metal"],
description: {
ja: "本気の ときは でかギアの 外の 歯車と ちびギアが 合致。 回転速度が 飛躍 するのだ。",
'zh-tw': "如果認真起來,大齒輪外圈的 齒輪會和小齒輪完全接合。 此時轉速將會大幅提升。",
'zh-cn': "如果認真起來,大齒輪外圈的 齒輪會和小齒輪完全接合。 此時轉速將會大幅提升。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ぐるぐるギア",
'zh-tw': "轉轉齒輪",
'zh-cn': "轉轉齒輪"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをこんらんにする。",
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
'zh-cn': "將對手的戰鬥寶可夢【混亂】。"
}
}, {
cost: ["Metal", "Colorless"],
name: {
ja: "がちんこ",
'zh-tw': "正面對決",
'zh-cn': "正面對決"
},
damage: 40
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "I"
}
export default card