-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vox Rework #1071
Vox Rework #1071
Changes from all commits
180720e
3fa5d80
dcf431d
41d8c24
70f2b73
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"omnisharp.analyzeOpenDocumentsOnly": true, | ||
"dotnet.defaultSolution": "SpaceStation14.sln" | ||
"dotnet.defaultSolution": "SpaceStation14.sln", | ||
"dotnet.preferCSharpExtension": true | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
marking-VoxHairLongQuills = Long Vox Quills | ||
marking-VoxHairMohawk = Quillhawk? | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
? |
||
marking-VoxHairShortQuills = Short Vox Quills | ||
marking-VoxHairKingly = Vox Kingly | ||
marking-VoxHairAfro = Vox Afro | ||
marking-VoxHairMohawk = Vox Mohawk | ||
marking-VoxHairYasuhiro = Vox Yasuhiro | ||
marking-VoxHairHorns = Vox Horns | ||
marking-VoxHairNights = Vox Nights | ||
marking-VoxHairSurf = Vox Surf | ||
marking-VoxHairCropped = Vox Cropped | ||
marking-VoxHairRuffhawk = Vox Ruffhawk | ||
marking-VoxHairRows = Vox Rows | ||
marking-VoxHairMange = Vox Mange | ||
marking-VoxHairPony = Vox Pony | ||
marking-VoxHairStubble = Vox Stubble |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
marking-VoxClawsChest-ClawsChest = Vox Chest Claws | ||
marking-VoxClawsChest = Vox Claws | ||
|
||
marking-VoxClawsLHand-ClawsLArm = Vox Left Claws | ||
marking-VoxClawsLHand = Vox Left Claws | ||
|
||
marking-VoxClawsRHand-ClawsRArm = Vox Right Claws | ||
marking-VoxClawsRHand = Vox Right Claws | ||
|
||
marking-VoxClawsLFoot-ClawsLLeg = Vox Left Claws | ||
marking-VoxClawsLFoot = Vox Left Claws | ||
|
||
marking-VoxClawsRFoot-ClawsRLeg = Vox Right Claws | ||
marking-VoxClawsRFoot = Vox Right Claws | ||
|
||
marking-VoxLArmMarkings-ArmMarkingsL = Left Arm Markings | ||
marking-VoxLArmMarkings = Left Arm Markings | ||
|
||
marking-VoxRArmMarkings-ArmMarkingsR = Right Arm Markings | ||
marking-VoxRArmMarkings = Right Arm Markings | ||
|
||
marking-VoxCrest-Crest = Vox Crest | ||
marking-VoxCrest = Vox Crest | ||
|
||
marking-VoxNeckMarkings-Neck_Markings = Neck Markings | ||
marking-VoxNeckMarkings = Neck Markings | ||
|
||
marking-VoxBeak-Beak = Vox Beak | ||
marking-VoxBeak = Vox Beak | ||
|
||
marking-VoxTail-Tail = Vox Tail | ||
marking-VoxTail = Vox Tail | ||
|
||
marking-VoxScutesLArm-ScutesLArm = Vox Left Scutes | ||
marking-VoxScutesLArm = Vox Left Scutes | ||
|
||
marking-VoxScutesRArm-ScutesRArm = Vox Right Scutes | ||
marking-VoxScutesRArm = Vox Right Scutes | ||
|
||
marking-VoxScutesLLeg-ScutesLLeg = Vox Left Scutes | ||
marking-VoxScutesLLeg = Vox Left Scutes | ||
|
||
marking-VoxScutesRLeg-ScutesRLeg = Vox Right Scutes | ||
marking-VoxScutesRLeg = Vox Right Scutes |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,8 @@ | |
abstract: true | ||
components: | ||
- type: Damageable | ||
damageContainer: Biological | ||
damageContainer: VoxMade | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
damageModifierSet: Primalis | ||
- type: BodyPart | ||
- type: ContainerContainer | ||
containers: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,3 +47,14 @@ | |
- Toxin | ||
supportedTypes: | ||
- Shock | ||
|
||
- type: damageContainer | ||
id: VoxMade # Radiation-Proofing | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Set the radiation damage modifier to 0 instead of removing the container |
||
supportedGroups: | ||
- Brute | ||
- Airloss | ||
supportedTypes: | ||
- Heat | ||
- Shock | ||
- Caustic | ||
- Poison |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -250,6 +250,19 @@ | |||||
Radiation: 0.2 | ||||||
Caustic: 0.0 | ||||||
|
||||||
- type: damageModifierSet | ||||||
id: Primalis | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
coefficients: | ||||||
Blunt: 0.3 | ||||||
Slash: 0.5 | ||||||
Piercing: 0.7 | ||||||
Heat: 1.5 | ||||||
Shock: 1.25 | ||||||
Caustic: 0.2 | ||||||
Asphyxiation: 2.5 | ||||||
Bloodloss: 1.8 | ||||||
Poison: 1.1 | ||||||
|
||||||
- type: damageModifierSet | ||||||
id: HellSpawn | ||||||
coefficients: | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.