Added method of differing names for 1h and 2h variants of a modular wepaon.

Added all 1h melee weapon models.
This commit is contained in:
Sam 2022-01-05 11:49:49 -05:00
parent aeac0f5ad6
commit ef5b2e4a1e
122 changed files with 365 additions and 64 deletions

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 1.0,
),
hand_restriction: None,
weapon_name: "Axe",
weapon_name: HandednessDependent(
one_handed: "Hatchet",
two_handed: "Axe",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Battleaxe",
weapon_name: HandednessDependent(
one_handed: "Cleaver",
two_handed: "Battleaxe",
),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Greataxe",
weapon_name: Universal("Greataxe"),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 2.0,
),
hand_restriction: None,
weapon_name: "Jagged Axe",
weapon_name: HandednessDependent(
one_handed: "Tomahawk",
two_handed: "Jagged Axe",
),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Labrys",
weapon_name: Universal("Labrys"),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Ornate Axe",
weapon_name: HandednessDependent(
one_handed: "Kilonda",
two_handed: "Ornate Axe",
),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Poleaxe",
weapon_name: Universal("Poleaxe"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 1.0,
),
hand_restriction: Some(Two),
weapon_name: "Bow",
weapon_name: Universal("Bow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 2.0,
),
hand_restriction: Some(Two),
weapon_name: "Composite Bow",
weapon_name: Universal("Composite Bow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Greatbow",
weapon_name: Universal("Greatbow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Longbow",
weapon_name: Universal("Longbow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Ornate Bow",
weapon_name: Universal("Ornate Bow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Shortbow",
weapon_name: Universal("Shortbow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Warbow",
weapon_name: Universal("Warbow"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Greathammer",
weapon_name: Universal("Greathammer"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Great Mace",
weapon_name: Universal("Great Mace"),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 1.0,
),
hand_restriction: None,
weapon_name: "Hammer",
weapon_name: HandednessDependent(
one_handed: "Club",
two_handed: "Hammer",
),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Maul",
weapon_name: Universal("Maul"),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Ornate Hammer",
weapon_name: HandednessDependent(
one_handed: "Cudgel",
two_handed: "Ornate Hammer",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 2.0,
),
hand_restriction: None,
weapon_name: "Spiked Mace",
weapon_name: HandednessDependent(
one_handed: "Mace",
two_handed: "Spiked Mace",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Warhammer",
weapon_name: HandednessDependent(
one_handed: "Mallet",
two_handed: "Warhammer",
),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Arbor",
weapon_name: Universal("Arbor"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Cane",
weapon_name: Universal("Cane"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 2.0,
),
hand_restriction: Some(Two),
weapon_name: "Crook",
weapon_name: Universal("Crook"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Crozier",
weapon_name: Universal("Crozier"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Grandsceptre",
weapon_name: Universal("Grandsceptre"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Ornate Sceptre",
weapon_name: Universal("Ornate Sceptre"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 1.0,
),
hand_restriction: Some(Two),
weapon_name: "Sceptre",
weapon_name: Universal("Sceptre"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Brand",
weapon_name: Universal("Brand"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Grandstaff",
weapon_name: Universal("Grandstaff"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Long Pole",
weapon_name: Universal("Long Pole"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Ornate Staff",
weapon_name: Universal("Ornate Staff"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 2.0,
),
hand_restriction: Some(Two),
weapon_name: "Pole",
weapon_name: Universal("Pole"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Rod",
weapon_name: Universal("Rod"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 1.0,
),
hand_restriction: Some(Two),
weapon_name: "Staff",
weapon_name: Universal("Staff"),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Greatsword",
weapon_name: Universal("Greatsword"),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Katana",
weapon_name: HandednessDependent(
one_handed: "Swiftblade",
two_handed: "Katana",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 1.0,
),
hand_restriction: None,
weapon_name: "Longsword",
weapon_name: HandednessDependent(
one_handed: "Arming Sword",
two_handed: "Longsword",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Ornate Sword",
weapon_name: HandednessDependent(
one_handed: "Rapier",
two_handed: "Ornate Sword",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: None,
weapon_name: "Sabre",
weapon_name: HandednessDependent(
one_handed: "Scimitar",
two_handed: "Sabre",
),
)
),
quality: Low,

View File

@ -15,7 +15,10 @@ ItemDef(
buff_strength: 2.0,
),
hand_restriction: None,
weapon_name: "Sawblade",
weapon_name: HandednessDependent(
one_handed: "Sawback",
two_handed: "Sawblade",
),
)
),
quality: Low,

View File

@ -15,7 +15,7 @@ ItemDef(
buff_strength: 0.8,
),
hand_restriction: Some(Two),
weapon_name: "Zweihander",
weapon_name: Universal("Zweihander"),
)
),
quality: Low,

View File

@ -1,5 +1,5 @@
ItemDef(
name: "Medium Bow Limbs",
name: "Medium Bow Grip",
description: "",
kind: ModularComponent(
ToolSecondaryComponent(

BIN
assets/voxygen/voxel/weapon/axe/axe/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/axe/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/axe/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/axe/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/axe/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/axe/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/battleaxe/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/battleaxe/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/battleaxe/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/battleaxe/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/battleaxe/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/battleaxe/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/jagged/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/jagged/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/jagged/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/jagged/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/jagged/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/jagged/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/ornate/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/ornate/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/ornate/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/ornate/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/ornate/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/axe/ornate/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/hammer/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/hammer/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/hammer/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/hammer/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/hammer/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/hammer/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/ornate/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/ornate/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/ornate/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/ornate/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/ornate/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/ornate/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/spikedmace/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/spikedmace/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/spikedmace/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/spikedmace/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/warhammer/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/warhammer/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/warhammer/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/hammer/warhammer/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/katana/bloodsteel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/katana/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/katana/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/katana/iron-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/katana/orichalcum-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/katana/steel-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/longsword/bronze-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/weapon/sword/longsword/cobalt-1h.vox (Stored with Git LFS) Normal file

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More