forked from space-syndicate/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9933ab1
commit 88bbe84
Showing
14 changed files
with
205 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
admin-verb-text-make-api = Сделать АПИИ | ||
admin-verb-make-api = Сделать цель агентом похищения искуственного интеллекта. | ||
api-backpack-category-utilities-name = Набор Утилит | ||
api-backpack-category-utilities-description = Набор полезных вещей, содержащий имплантеры хранилища и голопаразита, а также лазерный кинжал. | ||
ent-ToolboxApi = ящик воровских инструментов неопределённости | ||
.desc = Здесь лежат ваши излюбленные воровские штучки. Осталось вспомнить, какие именно. | ||
api-round-end-agent-name = агент похищения искуственного интеллекта | ||
roles-antag-api-objective = Украдите станционный ИИ, действуя скрытно. | ||
objective-condition-api-description = То, зачем я сюда прилетел. Осталось найти интелкарту и пробраться к нему. | ||
steal-target-groups-ai = станционный ИИ, помещённый на интелкарту | ||
api-role-greeting = | ||
Вы агент похищения искуственного интеллекта, также известный как АПИИ. | ||
У вас здесь одна цель: украсть станционный ИИ с помощью интелкарты. | ||
Старайтесь действовать скрытно, вы это любите. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
Resources/Prototypes/_CorvaxNext/Catalog/api_toolbox_sets.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
- type: thiefBackpackSet | ||
id: UtilitiesSet | ||
name: api-backpack-category-utilities-name | ||
description: api-backpack-category-utilities-description | ||
sprite: | ||
sprite: /Textures/Objects/Tools/Toolboxes/toolbox_syn.rsi | ||
state: icon | ||
content: | ||
- StorageImplanter | ||
- BoxHoloparasite | ||
- EnergyDaggerBox |
21 changes: 21 additions & 0 deletions
21
Resources/Prototypes/_CorvaxNext/Entities/Objects/Tools/api_toolbox.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
- type: entity | ||
id: ToolboxApi | ||
name: api undetermined toolbox | ||
description: This is where your favorite api's supplies lie. Try to remember which ones. | ||
parent: [ BaseItem, BaseMinorContraband ] | ||
components: | ||
- type: Sprite | ||
sprite: Objects/Tools/Toolboxes/toolbox_thief.rsi | ||
state: icon | ||
- type: ThiefUndeterminedBackpack | ||
maxSelectedSets: 3 | ||
possibleSets: | ||
- ChameleonSet | ||
- SyndieSet | ||
- UtilitiesSet | ||
- type: ActivatableUI | ||
key: enum.ThiefBackpackUIKey.Key | ||
- type: UserInterface | ||
interfaces: | ||
enum.ThiefBackpackUIKey.Key: | ||
type: ThiefBackpackBoundUserInterface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
- type: entity | ||
parent: BaseGameRule | ||
id: Api | ||
components: | ||
- type: ThiefRule | ||
- type: AntagObjectives | ||
objectives: | ||
- EscapeThiefShuttleObjective | ||
- type: AntagRandomObjectives | ||
sets: | ||
- groups: ApiObjectiveGroups | ||
maxPicks: 1 | ||
maxDifficulty: 1 | ||
- type: AntagSelection | ||
agentName: api-round-end-agent-name | ||
definitions: | ||
- prefRoles: [ Api ] | ||
max: 1 | ||
playerRatio: 15 | ||
lateJoinAdditional: true | ||
allowNonHumans: true | ||
multiAntagSetting: NotExclusive | ||
startingGear: ApiGear | ||
# components: # Corvax-MRP | ||
# - type: Pacified | ||
mindRoles: | ||
- MindRoleApi | ||
briefing: | ||
sound: "/Audio/Misc/thief_greeting.ogg" |
6 changes: 6 additions & 0 deletions
6
Resources/Prototypes/_CorvaxNext/Objectives/ai_steal_target_group.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
- type: stealTargetGroup | ||
id: Ai | ||
name: steal-target-groups-ai | ||
sprite: | ||
sprite: Mobs/Silicon/station_ai.rsi | ||
state: ai |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
- type: entity | ||
abstract: true | ||
parent: BaseObjective | ||
id: BaseApiObjective | ||
components: | ||
- type: Objective | ||
issuer: objective-issuer-thief | ||
- type: RoleRequirement | ||
roles: | ||
mindRoles: | ||
- ThiefRole | ||
|
||
- type: entity | ||
abstract: true | ||
parent: [BaseApiObjective, BaseStealObjective] | ||
id: BaseApiStealObjective | ||
components: | ||
- type: StealCondition | ||
verifyMapExistence: false | ||
descriptionText: objective-condition-api-description | ||
checkStealAreas: true | ||
|
||
- type: entity | ||
parent: BaseApiStealObjective | ||
id: AiStealObjective | ||
components: | ||
- type: StealCondition | ||
stealGroup: Ai | ||
checkHasAi: true | ||
- type: Objective | ||
difficulty: 1 |
9 changes: 9 additions & 0 deletions
9
Resources/Prototypes/_CorvaxNext/Objectives/api_objective_groups.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- type: weightedRandom | ||
id: ApiObjectiveGroups | ||
weights: | ||
ApiObjectiveGroupAi: 1 | ||
|
||
- type: weightedRandom | ||
id: ApiObjectiveGroupAi | ||
weights: | ||
AiStealObjective: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
- type: antag | ||
id: Api | ||
name: roles-antag-thief-name | ||
antagonist: true | ||
setPreference: true | ||
objective: roles-antag-api-objective | ||
guides: [ Thieves ] | ||
requirements: | ||
- !type:OverallPlaytimeRequirement | ||
time: 108000 # 30h # Corvax-RoleTime | ||
|
||
- type: startingGear | ||
id: ApiGear | ||
storage: | ||
back: | ||
- ToolboxApi | ||
- ClothingHandsChameleonThief | ||
- ThiefBeacon |
10 changes: 10 additions & 0 deletions
10
Resources/Prototypes/_CorvaxNext/Roles/MindRoles/api_mind_role.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Thief | ||
- type: entity | ||
parent: BaseMindRoleAntag | ||
id: MindRoleApi | ||
name: Api Role | ||
# description: mind-role-api-description | ||
components: | ||
- type: MindRole | ||
antagPrototype: Api | ||
- type: ThiefRole |