about summary refs log tree commit diff stats
path: root/AnodyneArchipelago/Plugin.cs
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-23 08:45:59 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-05-23 08:45:59 -0400
commitc35f790350e8494677bcf200438561c3099c9c4a (patch)
treea6ffdf7e39bbb7c2716667a2d74a70d65bc0d938 /AnodyneArchipelago/Plugin.cs
parent6ef358e1a1cddd853ff0245bb27669cdcc049dc6 (diff)
downloadanodyne-archipelago-c35f790350e8494677bcf200438561c3099c9c4a.tar.gz
anodyne-archipelago-c35f790350e8494677bcf200438561c3099c9c4a.tar.bz2
anodyne-archipelago-c35f790350e8494677bcf200438561c3099c9c4a.zip
Added Card item
Diffstat (limited to 'AnodyneArchipelago/Plugin.cs')
-rw-r--r--AnodyneArchipelago/Plugin.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/AnodyneArchipelago/Plugin.cs b/AnodyneArchipelago/Plugin.cs index 24345fc..26f1274 100644 --- a/AnodyneArchipelago/Plugin.cs +++ b/AnodyneArchipelago/Plugin.cs
@@ -6,6 +6,7 @@ using AnodyneSharp.Entities.Gadget;
6using AnodyneSharp.Entities.Gadget.Treasures; 6using AnodyneSharp.Entities.Gadget.Treasures;
7using AnodyneSharp.Entities.Interactive; 7using AnodyneSharp.Entities.Interactive;
8using AnodyneSharp.Registry; 8using AnodyneSharp.Registry;
9using AnodyneSharp.States;
9using AnodyneSharp.Utilities; 10using AnodyneSharp.Utilities;
10using BepInEx; 11using BepInEx;
11using BepInEx.NET.Common; 12using BepInEx.NET.Common;
@@ -23,6 +24,7 @@ namespace AnodyneArchipelago
23 public class Plugin : BasePlugin 24 public class Plugin : BasePlugin
24 { 25 {
25 public static Plugin Instance = null; 26 public static Plugin Instance = null;
27 public static Player Player = null;
26 28
27 public override void Load() 29 public override void Load()
28 { 30 {
@@ -48,11 +50,15 @@ namespace AnodyneArchipelago
48 } 50 }
49 } 51 }
50 52
51 [HarmonyPatch(typeof(AnodyneSharp.States.PlayState), nameof(AnodyneSharp.States.PlayState.Create))] 53 [HarmonyPatch(typeof(PlayState), nameof(PlayState.Create))]
52 class PlayStateCreatePatch 54 class PlayStateCreatePatch
53 { 55 {
54 static void Prefix() 56 static void Prefix(PlayState __instance)
55 { 57 {
58 // Get player for later access.
59 FieldInfo playerField = typeof(PlayState).GetField("_player", BindingFlags.NonPublic | BindingFlags.Instance);
60 Plugin.Player = (Player)playerField.GetValue(__instance);
61
56 // Handle Red Grotto stuff. 62 // Handle Red Grotto stuff.
57 GlobalState.events.SetEvent("red_cave_l_ss", 999); 63 GlobalState.events.SetEvent("red_cave_l_ss", 999);
58 GlobalState.events.SetEvent("red_cave_n_ss", 999); 64 GlobalState.events.SetEvent("red_cave_n_ss", 999);