From 458916fb78dcef3ff77cb29b7ba98d9f646819fc Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 02:08:55 -0400 Subject: feat: rough pharmacy skill added --- data/recipes/clean_avantoe.yaml | 11 +++++++++++ data/recipes/clean_cadantine.yaml | 11 +++++++++++ data/recipes/clean_dwarf_weed.yaml | 11 +++++++++++ data/recipes/clean_guam.yaml | 11 +++++++++++ data/recipes/clean_harralander.yaml | 11 +++++++++++ data/recipes/clean_irit.yaml | 11 +++++++++++ data/recipes/clean_kwuarm.yaml | 11 +++++++++++ data/recipes/clean_lantadyme.yaml | 11 +++++++++++ data/recipes/clean_marrentill.yaml | 11 +++++++++++ data/recipes/clean_ranarr.yaml | 11 +++++++++++ data/recipes/clean_snapdragon.yaml | 11 +++++++++++ data/recipes/clean_tarromin.yaml | 11 +++++++++++ data/recipes/clean_toadflax.yaml | 11 +++++++++++ data/recipes/clean_torstol.yaml | 11 +++++++++++ data/recipes/mix_amp_potion.yaml | 13 +++++++++++++ data/recipes/mix_bio_serum.yaml | 13 +++++++++++++ data/recipes/mix_full_restore.yaml | 13 +++++++++++++ data/recipes/mix_nano_restore.yaml | 13 +++++++++++++ data/recipes/mix_restoration_compound.yaml | 13 +++++++++++++ data/recipes/mix_science_serum.yaml | 13 +++++++++++++ data/recipes/mix_shield_potion.yaml | 13 +++++++++++++ data/recipes/mix_stim_cell.yaml | 13 +++++++++++++ data/recipes/mix_stim_potion.yaml | 13 +++++++++++++ data/recipes/mix_super_amp.yaml | 13 +++++++++++++ data/recipes/mix_super_bio_serum.yaml | 13 +++++++++++++ data/recipes/mix_super_shield.yaml | 13 +++++++++++++ data/recipes/mix_super_stim.yaml | 13 +++++++++++++ data/recipes/mix_super_stim_cell.yaml | 13 +++++++++++++ data/recipes/mix_targeting_serum.yaml | 13 +++++++++++++ data/recipes/mix_tech_serum.yaml | 13 +++++++++++++ 30 files changed, 362 insertions(+) create mode 100644 data/recipes/clean_avantoe.yaml create mode 100644 data/recipes/clean_cadantine.yaml create mode 100644 data/recipes/clean_dwarf_weed.yaml create mode 100644 data/recipes/clean_guam.yaml create mode 100644 data/recipes/clean_harralander.yaml create mode 100644 data/recipes/clean_irit.yaml create mode 100644 data/recipes/clean_kwuarm.yaml create mode 100644 data/recipes/clean_lantadyme.yaml create mode 100644 data/recipes/clean_marrentill.yaml create mode 100644 data/recipes/clean_ranarr.yaml create mode 100644 data/recipes/clean_snapdragon.yaml create mode 100644 data/recipes/clean_tarromin.yaml create mode 100644 data/recipes/clean_toadflax.yaml create mode 100644 data/recipes/clean_torstol.yaml create mode 100644 data/recipes/mix_amp_potion.yaml create mode 100644 data/recipes/mix_bio_serum.yaml create mode 100644 data/recipes/mix_full_restore.yaml create mode 100644 data/recipes/mix_nano_restore.yaml create mode 100644 data/recipes/mix_restoration_compound.yaml create mode 100644 data/recipes/mix_science_serum.yaml create mode 100644 data/recipes/mix_shield_potion.yaml create mode 100644 data/recipes/mix_stim_cell.yaml create mode 100644 data/recipes/mix_stim_potion.yaml create mode 100644 data/recipes/mix_super_amp.yaml create mode 100644 data/recipes/mix_super_bio_serum.yaml create mode 100644 data/recipes/mix_super_shield.yaml create mode 100644 data/recipes/mix_super_stim.yaml create mode 100644 data/recipes/mix_super_stim_cell.yaml create mode 100644 data/recipes/mix_targeting_serum.yaml create mode 100644 data/recipes/mix_tech_serum.yaml (limited to 'data/recipes') diff --git a/data/recipes/clean_avantoe.yaml b/data/recipes/clean_avantoe.yaml new file mode 100644 index 0000000..6903718 --- /dev/null +++ b/data/recipes/clean_avantoe.yaml @@ -0,0 +1,11 @@ +id: clean_avantoe +type: clean +skill: pharmacy +level: 48 +xp: 10 +wait: 2 +consume: + - items: [grimy_avantoe] + qty: 1 +output: avantoe +message: "You clean the grimy avantoe leaf." diff --git a/data/recipes/clean_cadantine.yaml b/data/recipes/clean_cadantine.yaml new file mode 100644 index 0000000..0a84f1f --- /dev/null +++ b/data/recipes/clean_cadantine.yaml @@ -0,0 +1,11 @@ +id: clean_cadantine +type: clean +skill: pharmacy +level: 65 +xp: 13 +wait: 2 +consume: + - items: [grimy_cadantine] + qty: 1 +output: cadantine +message: "You clean the grimy cadantine leaf." diff --git a/data/recipes/clean_dwarf_weed.yaml b/data/recipes/clean_dwarf_weed.yaml new file mode 100644 index 0000000..4843036 --- /dev/null +++ b/data/recipes/clean_dwarf_weed.yaml @@ -0,0 +1,11 @@ +id: clean_dwarf_weed +type: clean +skill: pharmacy +level: 70 +xp: 14 +wait: 2 +consume: + - items: [grimy_dwarf_weed] + qty: 1 +output: dwarf_weed +message: "You clean the grimy dwarf weed leaf." diff --git a/data/recipes/clean_guam.yaml b/data/recipes/clean_guam.yaml new file mode 100644 index 0000000..faa1e0f --- /dev/null +++ b/data/recipes/clean_guam.yaml @@ -0,0 +1,11 @@ +id: clean_guam +type: clean +skill: pharmacy +level: 3 +xp: 3 +wait: 2 +consume: + - items: [grimy_guam] + qty: 1 +output: guam +message: "You clean the grimy guam leaf." diff --git a/data/recipes/clean_harralander.yaml b/data/recipes/clean_harralander.yaml new file mode 100644 index 0000000..42aca32 --- /dev/null +++ b/data/recipes/clean_harralander.yaml @@ -0,0 +1,11 @@ +id: clean_harralander +type: clean +skill: pharmacy +level: 20 +xp: 6 +wait: 2 +consume: + - items: [grimy_harralander] + qty: 1 +output: harralander +message: "You clean the grimy harralander leaf." diff --git a/data/recipes/clean_irit.yaml b/data/recipes/clean_irit.yaml new file mode 100644 index 0000000..1524c20 --- /dev/null +++ b/data/recipes/clean_irit.yaml @@ -0,0 +1,11 @@ +id: clean_irit +type: clean +skill: pharmacy +level: 40 +xp: 9 +wait: 2 +consume: + - items: [grimy_irit] + qty: 1 +output: irit +message: "You clean the grimy irit leaf." diff --git a/data/recipes/clean_kwuarm.yaml b/data/recipes/clean_kwuarm.yaml new file mode 100644 index 0000000..178dec4 --- /dev/null +++ b/data/recipes/clean_kwuarm.yaml @@ -0,0 +1,11 @@ +id: clean_kwuarm +type: clean +skill: pharmacy +level: 54 +xp: 11 +wait: 2 +consume: + - items: [grimy_kwuarm] + qty: 1 +output: kwuarm +message: "You clean the grimy kwuarm leaf." diff --git a/data/recipes/clean_lantadyme.yaml b/data/recipes/clean_lantadyme.yaml new file mode 100644 index 0000000..05c4f98 --- /dev/null +++ b/data/recipes/clean_lantadyme.yaml @@ -0,0 +1,11 @@ +id: clean_lantadyme +type: clean +skill: pharmacy +level: 67 +xp: 13 +wait: 2 +consume: + - items: [grimy_lantadyme] + qty: 1 +output: lantadyme +message: "You clean the grimy lantadyme leaf." diff --git a/data/recipes/clean_marrentill.yaml b/data/recipes/clean_marrentill.yaml new file mode 100644 index 0000000..55959c5 --- /dev/null +++ b/data/recipes/clean_marrentill.yaml @@ -0,0 +1,11 @@ +id: clean_marrentill +type: clean +skill: pharmacy +level: 5 +xp: 4 +wait: 2 +consume: + - items: [grimy_marrentill] + qty: 1 +output: marrentill +message: "You clean the grimy marrentill leaf." diff --git a/data/recipes/clean_ranarr.yaml b/data/recipes/clean_ranarr.yaml new file mode 100644 index 0000000..712c88b --- /dev/null +++ b/data/recipes/clean_ranarr.yaml @@ -0,0 +1,11 @@ +id: clean_ranarr +type: clean +skill: pharmacy +level: 25 +xp: 8 +wait: 2 +consume: + - items: [grimy_ranarr] + qty: 1 +output: ranarr +message: "You clean the grimy ranarr leaf." diff --git a/data/recipes/clean_snapdragon.yaml b/data/recipes/clean_snapdragon.yaml new file mode 100644 index 0000000..d90c775 --- /dev/null +++ b/data/recipes/clean_snapdragon.yaml @@ -0,0 +1,11 @@ +id: clean_snapdragon +type: clean +skill: pharmacy +level: 59 +xp: 12 +wait: 2 +consume: + - items: [grimy_snapdragon] + qty: 1 +output: snapdragon +message: "You clean the grimy snapdragon leaf." diff --git a/data/recipes/clean_tarromin.yaml b/data/recipes/clean_tarromin.yaml new file mode 100644 index 0000000..1752b7c --- /dev/null +++ b/data/recipes/clean_tarromin.yaml @@ -0,0 +1,11 @@ +id: clean_tarromin +type: clean +skill: pharmacy +level: 11 +xp: 5 +wait: 2 +consume: + - items: [grimy_tarromin] + qty: 1 +output: tarromin +message: "You clean the grimy tarromin leaf." diff --git a/data/recipes/clean_toadflax.yaml b/data/recipes/clean_toadflax.yaml new file mode 100644 index 0000000..4124576 --- /dev/null +++ b/data/recipes/clean_toadflax.yaml @@ -0,0 +1,11 @@ +id: clean_toadflax +type: clean +skill: pharmacy +level: 30 +xp: 8 +wait: 2 +consume: + - items: [grimy_toadflax] + qty: 1 +output: toadflax +message: "You clean the grimy toadflax leaf." diff --git a/data/recipes/clean_torstol.yaml b/data/recipes/clean_torstol.yaml new file mode 100644 index 0000000..7ce0017 --- /dev/null +++ b/data/recipes/clean_torstol.yaml @@ -0,0 +1,11 @@ +id: clean_torstol +type: clean +skill: pharmacy +level: 75 +xp: 15 +wait: 2 +consume: + - items: [grimy_torstol] + qty: 1 +output: torstol +message: "You clean the grimy torstol leaf." diff --git a/data/recipes/mix_amp_potion.yaml b/data/recipes/mix_amp_potion.yaml new file mode 100644 index 0000000..1a50af9 --- /dev/null +++ b/data/recipes/mix_amp_potion.yaml @@ -0,0 +1,13 @@ +id: mix_amp_potion +type: pharmacy +skill: pharmacy +level: 12 +xp: 50 +wait: 4 +consume: + - items: [tarromin_potion_unf] + qty: 1 + - items: [limpwurt_root] + qty: 1 +output: amp_potion +message: "You mix an amp potion." diff --git a/data/recipes/mix_bio_serum.yaml b/data/recipes/mix_bio_serum.yaml new file mode 100644 index 0000000..7f1931a --- /dev/null +++ b/data/recipes/mix_bio_serum.yaml @@ -0,0 +1,13 @@ +id: mix_bio_serum +type: pharmacy +skill: pharmacy +level: 5 +xp: 38 +wait: 4 +consume: + - items: [marrentill_potion_unf] + qty: 1 + - items: [antitoxin_powder] + qty: 1 +output: bio_serum +message: "You mix a bio serum." diff --git a/data/recipes/mix_full_restore.yaml b/data/recipes/mix_full_restore.yaml new file mode 100644 index 0000000..76312cf --- /dev/null +++ b/data/recipes/mix_full_restore.yaml @@ -0,0 +1,13 @@ +id: mix_full_restore +type: pharmacy +skill: pharmacy +level: 63 +xp: 143 +wait: 4 +consume: + - items: [snapdragon_potion_unf] + qty: 1 + - items: [arachnid_enzyme] + qty: 1 +output: full_restore +message: "You mix a full restore." diff --git a/data/recipes/mix_nano_restore.yaml b/data/recipes/mix_nano_restore.yaml new file mode 100644 index 0000000..36bb251 --- /dev/null +++ b/data/recipes/mix_nano_restore.yaml @@ -0,0 +1,13 @@ +id: mix_nano_restore +type: pharmacy +skill: pharmacy +level: 22 +xp: 63 +wait: 4 +consume: + - items: [harralander_potion_unf] + qty: 1 + - items: [arachnid_enzyme] + qty: 1 +output: nano_restore +message: "You mix a nano restore." diff --git a/data/recipes/mix_restoration_compound.yaml b/data/recipes/mix_restoration_compound.yaml new file mode 100644 index 0000000..6639784 --- /dev/null +++ b/data/recipes/mix_restoration_compound.yaml @@ -0,0 +1,13 @@ +id: mix_restoration_compound +type: pharmacy +skill: pharmacy +level: 81 +xp: 180 +wait: 4 +consume: + - items: [toadflax_potion_unf] + qty: 1 + - items: [crushed_nest] + qty: 1 +output: restoration_compound +message: "You mix a restoration compound." diff --git a/data/recipes/mix_science_serum.yaml b/data/recipes/mix_science_serum.yaml new file mode 100644 index 0000000..5f60945 --- /dev/null +++ b/data/recipes/mix_science_serum.yaml @@ -0,0 +1,13 @@ +id: mix_science_serum +type: pharmacy +skill: pharmacy +level: 76 +xp: 173 +wait: 4 +consume: + - items: [lantadyme_potion_unf] + qty: 1 + - items: [potato_cactus] + qty: 1 +output: science_serum +message: "You mix a science serum." diff --git a/data/recipes/mix_shield_potion.yaml b/data/recipes/mix_shield_potion.yaml new file mode 100644 index 0000000..875e870 --- /dev/null +++ b/data/recipes/mix_shield_potion.yaml @@ -0,0 +1,13 @@ +id: mix_shield_potion +type: pharmacy +skill: pharmacy +level: 30 +xp: 75 +wait: 4 +consume: + - items: [ranarr_potion_unf] + qty: 1 + - items: [white_berries] + qty: 1 +output: shield_potion +message: "You mix a shield potion." diff --git a/data/recipes/mix_stim_cell.yaml b/data/recipes/mix_stim_cell.yaml new file mode 100644 index 0000000..8915f39 --- /dev/null +++ b/data/recipes/mix_stim_cell.yaml @@ -0,0 +1,13 @@ +id: mix_stim_cell +type: pharmacy +skill: pharmacy +level: 26 +xp: 68 +wait: 4 +consume: + - items: [harralander_potion_unf] + qty: 1 + - items: [chocolate_dust] + qty: 1 +output: stim_cell +message: "You mix a stim cell." diff --git a/data/recipes/mix_stim_potion.yaml b/data/recipes/mix_stim_potion.yaml new file mode 100644 index 0000000..67db442 --- /dev/null +++ b/data/recipes/mix_stim_potion.yaml @@ -0,0 +1,13 @@ +id: mix_stim_potion +type: pharmacy +skill: pharmacy +level: 3 +xp: 25 +wait: 4 +consume: + - items: [guam_potion_unf] + qty: 1 + - items: [eye_of_newt] + qty: 1 +output: stim_potion +message: "You mix a stim potion." diff --git a/data/recipes/mix_super_amp.yaml b/data/recipes/mix_super_amp.yaml new file mode 100644 index 0000000..ea30e35 --- /dev/null +++ b/data/recipes/mix_super_amp.yaml @@ -0,0 +1,13 @@ +id: mix_super_amp +type: pharmacy +skill: pharmacy +level: 55 +xp: 125 +wait: 4 +consume: + - items: [kwuarm_potion_unf] + qty: 1 + - items: [limpwurt_root] + qty: 1 +output: super_amp +message: "You mix a super amp." diff --git a/data/recipes/mix_super_bio_serum.yaml b/data/recipes/mix_super_bio_serum.yaml new file mode 100644 index 0000000..808dd31 --- /dev/null +++ b/data/recipes/mix_super_bio_serum.yaml @@ -0,0 +1,13 @@ +id: mix_super_bio_serum +type: pharmacy +skill: pharmacy +level: 48 +xp: 106 +wait: 4 +consume: + - items: [irit_potion_unf] + qty: 1 + - items: [antitoxin_powder] + qty: 1 +output: super_bio_serum +message: "You mix a super bio serum." diff --git a/data/recipes/mix_super_shield.yaml b/data/recipes/mix_super_shield.yaml new file mode 100644 index 0000000..07d849b --- /dev/null +++ b/data/recipes/mix_super_shield.yaml @@ -0,0 +1,13 @@ +id: mix_super_shield +type: pharmacy +skill: pharmacy +level: 66 +xp: 150 +wait: 4 +consume: + - items: [cadantine_potion_unf] + qty: 1 + - items: [white_berries] + qty: 1 +output: super_shield +message: "You mix a super shield." diff --git a/data/recipes/mix_super_stim.yaml b/data/recipes/mix_super_stim.yaml new file mode 100644 index 0000000..2382960 --- /dev/null +++ b/data/recipes/mix_super_stim.yaml @@ -0,0 +1,13 @@ +id: mix_super_stim +type: pharmacy +skill: pharmacy +level: 45 +xp: 100 +wait: 4 +consume: + - items: [irit_potion_unf] + qty: 1 + - items: [eye_of_newt] + qty: 1 +output: super_stim +message: "You mix a super stim." diff --git a/data/recipes/mix_super_stim_cell.yaml b/data/recipes/mix_super_stim_cell.yaml new file mode 100644 index 0000000..5ed6bd3 --- /dev/null +++ b/data/recipes/mix_super_stim_cell.yaml @@ -0,0 +1,13 @@ +id: mix_super_stim_cell +type: pharmacy +skill: pharmacy +level: 52 +xp: 118 +wait: 4 +consume: + - items: [avantoe_potion_unf] + qty: 1 + - items: [blight_spore] + qty: 1 +output: super_stim_cell +message: "You mix a super stim cell." diff --git a/data/recipes/mix_targeting_serum.yaml b/data/recipes/mix_targeting_serum.yaml new file mode 100644 index 0000000..54bd338 --- /dev/null +++ b/data/recipes/mix_targeting_serum.yaml @@ -0,0 +1,13 @@ +id: mix_targeting_serum +type: pharmacy +skill: pharmacy +level: 72 +xp: 163 +wait: 4 +consume: + - items: [dwarf_weed_potion_unf] + qty: 1 + - items: [catalyst_wine] + qty: 1 +output: targeting_serum +message: "You mix a targeting serum." diff --git a/data/recipes/mix_tech_serum.yaml b/data/recipes/mix_tech_serum.yaml new file mode 100644 index 0000000..ea41efd --- /dev/null +++ b/data/recipes/mix_tech_serum.yaml @@ -0,0 +1,13 @@ +id: mix_tech_serum +type: pharmacy +skill: pharmacy +level: 38 +xp: 88 +wait: 4 +consume: + - items: [ranarr_potion_unf] + qty: 1 + - items: [snape_grass] + qty: 1 +output: tech_serum +message: "You mix a tech serum." -- cgit v1.2.3