1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

67
data-asia/SV/SV7/067.ts Normal file
View File

@@ -0,0 +1,67 @@
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