-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from DestinyPlayer/indev
Merge of 1.2
- Loading branch information
Showing
27 changed files
with
197 additions
and
76 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
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
Binary file not shown.
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
Binary file removed
BIN
-14 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/026788d6-f6a9-4b9c-9e96-7e3983520990.vsidx
Binary file not shown.
Binary file added
BIN
+7.73 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/14faf9fa-62e5-4124-bc0d-668012f1cf8d.vsidx
Binary file not shown.
Binary file removed
BIN
-9.73 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/33561d27-82a4-405e-a3c0-aa90f5c3ea47.vsidx
Binary file not shown.
Binary file removed
BIN
-9.31 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/5f8909ee-d4bd-4854-8bd8-eaff7d0c7034.vsidx
Binary file not shown.
Binary file removed
BIN
-6.6 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/7b688854-3f97-4240-befa-b50a9ff820bd.vsidx
Binary file not shown.
Binary file added
BIN
+10.7 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/84bb2327-5817-40b0-9442-74cd8a6b2fc0.vsidx
Binary file not shown.
Binary file added
BIN
+9.63 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/8e107adf-b218-467b-8d3d-18b94ec4b13d.vsidx
Binary file not shown.
Binary file added
BIN
+13.1 KB
...epacks/.vs/CategoricGenepacks/FileContentIndex/d4830c5d-e7d0-44ba-844a-cb37ebbf78dd.vsidx
Binary file not shown.
Binary file not shown.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,60 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Verse; | ||
|
||
namespace CategoricGenepacks | ||
{ | ||
//Ability | ||
public class GF_AbilityGenepack : GF_Pack | ||
{ | ||
protected override void SetCategory() | ||
{ | ||
GeneCat = "Ability"; | ||
} | ||
} | ||
public class GF_PutAbilityInGeneBank : WorkGiver_PutPackInGenebank | ||
{ | ||
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForDef(GF_Utility.getGFPack("GF_AbilityGenepack")); | ||
} | ||
//Hemogen | ||
public class GF_HemoGenepack : GF_Pack | ||
{ | ||
protected override void SetCategory() | ||
{ | ||
GeneCat = "Hemogen"; | ||
} | ||
} | ||
public class GF_PutHemoInGeneBank : WorkGiver_PutPackInGenebank | ||
{ | ||
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForDef(GF_Utility.getGFPack("GF_HemoGenepack")); | ||
} | ||
//Alpha Genes Mechanitor | ||
public class GF_AG_MechanitorGenepack : GF_Pack | ||
{ | ||
protected override void SetCategory() | ||
{ | ||
GeneCat = "AG_Mechanitor"; | ||
} | ||
} | ||
public class GF_AG_PutMechanitorInGeneBank : WorkGiver_PutPackInGenebank | ||
{ | ||
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForDef(GF_Utility.getGFPack("GF_AG_MechanitorGenepack")); | ||
} | ||
//Warhammer 40k Genes and Psycasts | ||
public class GF_BEWH_WarhammerGenepack : GF_Pack | ||
{ | ||
|
||
protected override void SetCategory() | ||
{ | ||
GeneCat = "BEWH"; | ||
AllowArchite = 100; | ||
} | ||
} | ||
public class GF_BEWH_PutWarhammerInGeneBank : WorkGiver_PutPackInGenebank | ||
{ | ||
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForDef(GF_Utility.getGFPack("GF_BEWH_WarhammerGenepack")); | ||
} | ||
} |
Oops, something went wrong.