mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
53
data-asia/SV/SV1S/088.ts
Normal file
53
data-asia/SV/SV1S/088.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV1S"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ガケガニ"
|
||||
},
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
category: "Pokemon",
|
||||
dexId: [950],
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
ja: "逆さまになって 崖の 上から 獲物を 狙うが 頭に 血が上るので 長くは 待てない。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
ja: "はさむ"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
ja: "アドレナハンマー"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンをこんらんにする。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user