mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 11:51:59 +00:00
feat: Add SV9 (#674)
This commit is contained in:
60
data-asia/SV/SV9/064.ts
Normal file
60
data-asia/SV/SV9/064.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
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
|
Reference in New Issue
Block a user