Json Weapons.json - hikipuro/rpgmakermv_ref GitHub Wiki
Weapons.json の構造
- データベースの武器のデータ
- data/Weapons.json に配置されている
- インデックス 0 の項目は null (1 から始まる)
[
null,
{
"id": 1,
"animationId": 6,
"description": "",
"etypeId": 1,
"traits": [
{
"code": 31,
"dataId": 1,
"value": 0
},
.
.
.
],
"iconIndex": 97,
"name": "剣",
"note": "",
"params": [0, 0, 10, 0, 0, 0, 0, 0],
"price": 500,
"wtypeId": 2
},
.
.
.
]
項目 | 型 | 説明 |
---|---|---|
id | number | 武器のID |
animationId | number | 基本設定:アニメーション |
description | string | 基本設定:説明 |
etypeId | number | |
traits | Array.<object> | 特徴 |
iconIndex | number | 基本設定:アイコン |
name | string | 基本設定:名前 |
note | string | メモ |
params | Array.<number> | 能力値変化量 |
price | number | 基本設定:価格 |
wtypeId | number | 基本設定:武器タイプ |