yeah i think that's commit worthy
This commit is contained in:
parent
49cf2f2bb9
commit
fada3af715
16 changed files with 658 additions and 29 deletions
|
|
@ -175,8 +175,8 @@ MonoBehaviour:
|
|||
m_Script: {fileID: 11500000, guid: 441b69580fe55f47ead9c7266bb4d363, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
health: 100
|
||||
maxHealth: 100
|
||||
health: 50
|
||||
maxHealth: 50
|
||||
maxMovement: 4
|
||||
currentTile: {fileID: 0}
|
||||
moveAnimSpeed: 10
|
||||
|
|
|
|||
|
|
@ -49,7 +49,8 @@ MonoBehaviour:
|
|||
weaponName: Mochi Mallet
|
||||
isAiming: 0
|
||||
thisEntity: {fileID: 0}
|
||||
damage: 30
|
||||
damage: 35
|
||||
pierce: 0
|
||||
entityLayer:
|
||||
serializedVersion: 2
|
||||
m_Bits: 128
|
||||
|
|
|
|||
|
|
@ -45,7 +45,10 @@ MonoBehaviour:
|
|||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
weaponName: Musket
|
||||
thisEntity: {fileID: 0}
|
||||
fired: 0
|
||||
isAiming: 0
|
||||
thisEntity: {fileID: 0}
|
||||
damage: 100
|
||||
pierce: 6
|
||||
reloadActionUsage: 2
|
||||
fired: 0
|
||||
projectile: {fileID: -1842087358034785043, guid: 66f942782c156c9aa905099dade8a654, type: 3}
|
||||
|
|
|
|||
54
Assets/Prefabs/Pistol.prefab
Normal file
54
Assets/Prefabs/Pistol.prefab
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &8120255683806130734
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 249869374080430447}
|
||||
- component: {fileID: 5015834028617221606}
|
||||
m_Layer: 0
|
||||
m_Name: Pistol
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &249869374080430447
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8120255683806130734}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &5015834028617221606
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8120255683806130734}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a1c9e746311daba0092c2ff511ab3031, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
weaponName: Pistol
|
||||
isAiming: 0
|
||||
thisEntity: {fileID: 0}
|
||||
damage: 75
|
||||
pierce: 3
|
||||
reloadActionUsage: 1
|
||||
fired: 0
|
||||
projectile: {fileID: -1842087358034785043, guid: 66f942782c156c9aa905099dade8a654, type: 3}
|
||||
7
Assets/Prefabs/Pistol.prefab.meta
Normal file
7
Assets/Prefabs/Pistol.prefab.meta
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ad296ed0e6da5671e9a476e1bb8f6998
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
|
@ -474,11 +474,14 @@ MonoBehaviour:
|
|||
damageColorChangeSpeed: 4
|
||||
actions: 2
|
||||
maxActions: 2
|
||||
selectedClass: 0
|
||||
weapons:
|
||||
- {fileID: 5015834028617221606, guid: a822f12b0129533629ae07e7075e0b33, type: 3}
|
||||
- {fileID: 7808092982301890633, guid: b8051aa5988c369b1a760ce62ebcbedd, type: 3}
|
||||
weaponInstances: []
|
||||
currentWeapon: {fileID: 0}
|
||||
officerAbility: {fileID: 2386380402288434018, guid: 399276321551d6338842b1dc4975d66f, type: 3}
|
||||
officerInstance: {fileID: 0}
|
||||
hpBar: {fileID: 3104995061699689292}
|
||||
debugDoneObject: {fileID: 6197559026114623176}
|
||||
--- !u!1 &9154813544046831137
|
||||
|
|
|
|||
50
Assets/Prefabs/ReloadSurge.prefab
Normal file
50
Assets/Prefabs/ReloadSurge.prefab
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &801935050829970014
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 7703980202025624524}
|
||||
- component: {fileID: 2386380402288434018}
|
||||
m_Layer: 0
|
||||
m_Name: ReloadSurge
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &7703980202025624524
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 801935050829970014}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &2386380402288434018
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 801935050829970014}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 0704cc1c95eb8482f875e76ed2431f51, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
thisEntity: {fileID: 0}
|
||||
killQuota: 0
|
||||
abilityLength: 4
|
||||
roundsRemaining: 0
|
||||
7
Assets/Prefabs/ReloadSurge.prefab.meta
Normal file
7
Assets/Prefabs/ReloadSurge.prefab.meta
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 399276321551d6338842b1dc4975d66f
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Loading…
Add table
Add a link
Reference in a new issue