Rarity is now stored in string to allow range
This commit is contained in:
@@ -29,6 +29,7 @@
|
|||||||
- Visibility mode now should be consistent with the 1st message (public, private, gm...).
|
- Visibility mode now should be consistent with the 1st message (public, private, gm...).
|
||||||
- DiceSoNice will now not show the new dice(s) for explosive in non-public mode.
|
- DiceSoNice will now not show the new dice(s) for explosive in non-public mode.
|
||||||
- Fixed Title's embed items tooltips.
|
- Fixed Title's embed items tooltips.
|
||||||
|
- Rarity is now stored in string to allow range.
|
||||||
- Minor fixe on editable state.
|
- Minor fixe on editable state.
|
||||||
- Updated compatibility to Foundry VTT v0.8.9
|
- Updated compatibility to Foundry VTT v0.8.9
|
||||||
|
|
||||||
|
|||||||
@@ -176,8 +176,8 @@
|
|||||||
"equipped": false,
|
"equipped": false,
|
||||||
"quantity": 1,
|
"quantity": 1,
|
||||||
"weight": 0,
|
"weight": 0,
|
||||||
"rarity": 0,
|
"rarity": "0",
|
||||||
"zeni": 0,
|
"zeni": "0",
|
||||||
"properties": []
|
"properties": []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
"category": "",
|
"category": "",
|
||||||
"skill": "melee",
|
"skill": "melee",
|
||||||
"readied": false,
|
"readied": false,
|
||||||
"range": 0,
|
"range": "0",
|
||||||
"damage": 0,
|
"damage": 0,
|
||||||
"deadliness": 0,
|
"deadliness": 0,
|
||||||
"grip_1": "",
|
"grip_1": "",
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
</label>
|
</label>
|
||||||
<label class="value">
|
<label class="value">
|
||||||
{{localize 'l5r5e.rarity'}}
|
{{localize 'l5r5e.rarity'}}
|
||||||
<input class="select-on-focus" type="number" name="data.rarity" value="{{data.data.rarity}}" data-dtype="Number" min="0" placeholder="0"/>
|
<input class="select-on-focus" type="text" name="data.rarity" value="{{data.data.rarity}}" data-dtype="String" min="0" placeholder="0"/>
|
||||||
</label>
|
</label>
|
||||||
<label class="value">
|
<label class="value">
|
||||||
<i class="fas fa-coins"></i>
|
<i class="fas fa-coins"></i>
|
||||||
|
|||||||
Reference in New Issue
Block a user