Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions objects/obj_creation/Create_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,11 @@ var all_disadvantages = [
description : "Prevents your Chapter from recruiting new Astartes until enough of your marines, or enemies, have been killed. Incompatible with Penitent chapter types.",
value : 50,
},
{
name : "Depleted Armamentarium Stocks",
description : "Your chapter has lost its equipment stocks in recent engagement.",
value : 10,
},
{
name : "Fresh Blood",
description : "Due to being newly created your chapter has little special wargear or psykers.",
Expand Down
2 changes: 2 additions & 0 deletions scripts/scr_initialize_custom/scr_initialize_custom.gml
Original file line number Diff line number Diff line change
Expand Up @@ -3229,6 +3229,8 @@ function scr_initialize_custom() {
}
}

// I need advice on how to implement "Depleted Armamentarium Stocks" properly

if(scr_has_disadv("Sieged")){
scr_add_item("Narthecium", 4);
scr_add_item(wep1[defaults_slot, eROLE.Apothecary], 4);
Expand Down