diff --git a/src/lang/en.json b/src/lang/en.json
index 5e36dbf..015f470 100644
--- a/src/lang/en.json
+++ b/src/lang/en.json
@@ -89,5 +89,20 @@
"OSE.Setting.THAC0Attacks": "Attacks with THAC0",
"OSE.Setting.THAC0AttacksHint": "Attacks are resolved using the THAC0 value, not compatible with AAC",
"OSE.Setting.VariableWeaponDamage": "Variable Weapon Damage",
- "OSE.Setting.VariableWeaponDamageHint": "Weapons have different damage dice"
+ "OSE.Setting.VariableWeaponDamageHint": "Weapons have different damage dice",
+
+ "OSE.ItemWeight": "Weight",
+ "OSE.ItemCost": "Cost",
+ "OSE.ItemQuantity": "Quantity",
+ "OSE.ItemRoll": "Roll",
+ "OSE.WeaponDamage": "Damage",
+ "OSE.WeaponMelee": "Melee",
+ "OSE.WeaponMissile": "Missile",
+ "OSE.WeaponSlow": "Slow",
+ "OSE.SpellRange": "Range",
+ "OSE.SpellClass": "Class",
+ "OSE.SpellDuration": "Duration",
+ "OSE.SpellLevel": "Level",
+ "OSE.ArmorAC": "AC",
+ "OSE.ArmorAAC": "AAC"
}
\ No newline at end of file
diff --git a/src/scss/item.scss b/src/scss/item.scss
index c1deb83..3639051 100644
--- a/src/scss/item.scss
+++ b/src/scss/item.scss
@@ -1,5 +1,17 @@
.ose.sheet.item {
- .editor {
- height: 255px;
+ .profile-img {
+ border: none;
}
+ .sheet-body {
+ .stats {
+ flex: 0 0 70px;
+ border-right: 1px groove rgba(0, 0, 0, 0.2);
+ }
+ .editor {
+ height: 255px;
+ }
+ .weapon-editor .editor {
+ height: 230px;
+ }
+ }
}
\ No newline at end of file
diff --git a/src/template.json b/src/template.json
index e4951c2..1c5a2c2 100644
--- a/src/template.json
+++ b/src/template.json
@@ -144,7 +144,7 @@
"damage": "1d6",
"qualities": "",
"slow": false,
- "melee": true,
+ "missile": true,
"ranged": true,
"cost": 0,
"weight": 0
@@ -161,10 +161,12 @@
"class": "Magic-User",
"duration": "",
"range": "",
+ "roll": "",
"description": ""
},
"ability": {
"requirements": "",
+ "roll": "",
"description": ""
}
}
diff --git a/src/templates/items/ability-sheet.html b/src/templates/items/ability-sheet.html
index 2704d00..e2c2f77 100644
--- a/src/templates/items/ability-sheet.html
+++ b/src/templates/items/ability-sheet.html
@@ -3,17 +3,18 @@