fix: rename Sligth_of_hand typo and resolve TODO attribute mappings (Closes #83) (#125)

This commit was merged in pull request #125.
This commit is contained in:
2026-04-04 23:08:25 +02:00
parent 431271edce
commit a950589041
@@ -1,5 +1,6 @@
package org.shahondin1624.model.talents
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import org.shahondin1624.model.attributes.AttributeType
import org.shahondin1624.model.attributes.AttributeType.*
@@ -24,21 +25,20 @@ enum class ProvidedTalentName(val attribute: AttributeType) {
Blades(Strength),
Chemistry(Logic),
Clubs(Strength),
//TODO Logic
Computer(Logic),
Sligth_of_hand(Charisma),
Con(Charisma),
Counterspelling(Willpower),
Cybercombat(Logic),
Cybertechnology(Logic),
//TODO Logic
Demolitions(Intuition),
Demolitions(Logic),
Disenchanting(Willpower),
Disguise(Intuition),
Diving(Body),
Electronic_Warfare(Logic),
Escape_Artist(Agility),
Etiquette(Charisma),
//TODO Exotics
Exotic_Melee_Weapon(Agility),
Exotic_Ranged_Weapon(Agility),
First_Aid(Intuition),
Forgery(Logic),
Free_Fall(Agility),
@@ -63,14 +63,15 @@ enum class ProvidedTalentName(val attribute: AttributeType) {
Performance(Charisma),
Pilot_Aerospace(Reaction),
Pilot_Aircraft(Reaction),
//TODO Pilot Exotic
Pilot_Exotic_Vehicle(Reaction),
Pilot_Groundcraft(Reaction),
Pilot_Walker(Reaction),
Pilot_Watercraft(Reaction),
Pistols(Agility),
//TODO, Logic
Ritual_Spellcasting(Willpower),
Running(Body),
@SerialName("Sligth_of_hand")
Sleight_of_hand(Charisma),
Sneaking(Agility),
Software(Logic),
Spellcasting(Willpower),
@@ -81,4 +82,4 @@ enum class ProvidedTalentName(val attribute: AttributeType) {
Tracking(Intuition),
Unarmed_Combat(Strength)
;
}
}