mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
58
data-asia/S/S9/069.ts
Normal file
58
data-asia/S/S9/069.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "齒輪兒",
|
||||
ja: "ギアル"
|
||||
},
|
||||
|
||||
illustrator: "OKACHEKE",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "2個身體比雙胞胎還要親近。要是換成別的齒輪兒, 就沒有辦法好好咬合。",
|
||||
ja: "2つの 体は 双子よりも 近い。 べつの 体同士だと いまいち うまく 噛み合わない。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "夾住",
|
||||
ja: "はさむ"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Metal"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "迴轉攻擊",
|
||||
ja: "かいてんアタック"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Metal", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
rarity: "Common",
|
||||
dexId: [599]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user