Add tooltips to the agent ID job icons and improve status icon prototypes (#28575)
* add tooltips to agentid job icons * forgot to stage this * make StatusIconPrototype abstract * minor visual improvements * cleanup * use currentculture to sort job names * review
This commit is contained in:
parent
563f1f9173
commit
1f770542a6
|
|
@ -0,0 +1,35 @@
|
|||
- type: healthIcon
|
||||
id: HealthIcon
|
||||
abstract: true
|
||||
priority: 3
|
||||
locationPreference: Left
|
||||
isShaded: true
|
||||
|
||||
- type: healthIcon
|
||||
parent: HealthIcon
|
||||
id: HealthIconFine
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/health_icons.rsi
|
||||
state: Fine
|
||||
|
||||
- type: healthIcon
|
||||
id: HealthIconCritical
|
||||
parent: HealthIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/health_icons.rsi
|
||||
state: Critical
|
||||
|
||||
- type: healthIcon
|
||||
id: HealthIconDead
|
||||
parent: HealthIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/health_icons.rsi
|
||||
state: Dead
|
||||
|
||||
- type: healthIcon
|
||||
id: HealthIconRotting
|
||||
parent: HealthIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/health_icons.rsi
|
||||
state: Rotting
|
||||
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
#Hunger
|
||||
- type: satiationIcon
|
||||
id: HungerIcon
|
||||
abstract: true
|
||||
priority: 5
|
||||
locationPreference: Right
|
||||
isShaded: true
|
||||
|
||||
- type: satiationIcon
|
||||
id: HungerIconOverfed
|
||||
parent: HungerIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/food_icons.rsi
|
||||
state: overfed
|
||||
|
||||
- type: satiationIcon
|
||||
id: HungerIconPeckish
|
||||
parent: HungerIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/food_icons.rsi
|
||||
state: peckish
|
||||
|
||||
- type: satiationIcon
|
||||
id: HungerIconStarving
|
||||
parent: HungerIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/food_icons.rsi
|
||||
state: starving
|
||||
|
||||
#Thirst
|
||||
- type: satiationIcon
|
||||
id: ThirstIcon
|
||||
abstract: true
|
||||
priority: 5
|
||||
locationPreference: Left
|
||||
isShaded: true
|
||||
|
||||
- type: satiationIcon
|
||||
id: ThirstIconOverhydrated
|
||||
parent: ThirstIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/food_icons.rsi
|
||||
state: overhydrated
|
||||
|
||||
- type: satiationIcon
|
||||
id: ThirstIconThirsty
|
||||
parent: ThirstIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/food_icons.rsi
|
||||
state: thirsty
|
||||
|
||||
- type: satiationIcon
|
||||
id: ThirstIconParched
|
||||
parent: ThirstIcon
|
||||
icon:
|
||||
sprite: /Textures/Interface/Misc/food_icons.rsi
|
||||
state: parched
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
- type: ssdIcon
|
||||
id: SSDIcon
|
||||
icon:
|
||||
sprite: /Textures/Effects/ssd.rsi
|
||||
state: default0
|
||||
locationPreference: Left
|
||||
Loading…
Reference in New Issue