Created page with "<!-- Template:CraftingGUIHover --> <!-- Parameters - bg : full File:... syntax for the crafting window background image - width : width in px to render the background (default 512) - tip1..tip9 : tooltip content for the 3×3 crafting grid (row-major: top-left to bottom-right) - tipout : tooltip content for the output slot Optional alignment (px; adjust if your background differs): - grid_x, grid_y : top-left corner of the 3×3 grid relative to..."
 
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
<!-- Template:CraftingGUIHover -->
[[File:Bees.png|500px|right|link=]]
Beekeeping
🐝 Get ready to have some new friends buzzing around your Island, as '''Bees''' are making their way to Cosmic Sky!


<!--
=How Beekeeping Works=
Parameters
The Beekeeping system introduces plenty of island-based content surrounding Bees, such as:
- bg          : full File:... syntax for the crafting window background image
* Upgradable '''Bee Hives''' & '''Queen Bees'''
- width        : width in px to render the background (default 512)
* Bee Larvae incubation
- tip1..tip9  : tooltip content for the 3×3 crafting grid (row-major: top-left to bottom-right)
* Tiered Worker Bees
- tipout      : tooltip content for the output slot
* Buffed crop growth for crops within range of your Bees
* Tiered '''<span style="color:#FFAA00">Pollen</span>'''
* Distilling '''Honeycomb''' into Tiered '''Honey Bottles'''
* And more!


Optional alignment (px; adjust if your background differs):
=Starting your Beekeeping Journey=
- grid_x, grid_y : top-left corner of the 3×3 grid relative to the background
To begin, you will first need to craft a '''Bee Hive'''!
- slot          : slot box size (default 48)
* Bee Hives are crafted using '''8x Empty Honeycomb''' in a Crafting Bench (same shape as a Chest).
- gap_h, gap_v  : horizontal / vertical gaps between slots
{{Bee_Hive_Crafting_GUI
- out_x, out_y  : center of the output slot
| bg = Bee Hive Crafting.png
-->
| width = 512
| tip1 = [[File:Empty Honeycomb.png|300px|link=]]
| tip2 = [[File:Empty Honeycomb.png|300px|link=]]
| tip3 = [[File:Empty Honeycomb.png|300px|link=]]
| tip4 = [[File:Empty Honeycomb.png|300px|link=]]
| tip5 =
| tip6 = [[File:Empty Honeycomb.png|300px|link=]]
| tip7 = [[File:Empty Honeycomb.png|300px|link=]]
| tip8 = [[File:Empty Honeycomb.png|300px|link=]]
| tip9 = [[File:Empty Honeycomb.png|300px|link=]]
| tipout = [[File:Bee Hive Lore.png|300px|link=]]
| grid_x = 93
| grid_y = 47
| out_x  = 373
| out_y  = 102
}}
'''Hover Over the Crafting GUI to see What Items to Craft With!'''
* '''Empty Honeycomb''' can be obtained via:
** '''/quest''' rewards
** Destroying '''Bee Nests''' that spawn when an Oak Sapling grows with Flowers nearby
* When placed on your Island, each Bee Hive begins with a Level 1 '''Queen Bee''' and a Basic Worker Bee.


<includeonly>
'''Worker Bees''' will:
<span class="crafting-gui" style="display:inline-block; position:relative; width:{{{width|512}}}px;">
* Leave the hive to forage after resting
* Travel to nearby ungrown crops, spreading '''<span style="color:#FFAA00">pollen</span>''' to fully grow crops
* Deposit collected Pollen into the hive before entering a Rest period


  <!-- background -->
=Bee Larvae & Incubation=
  [[File:{{{bg|CraftingGUI-Example.png}}}|{{{width|512}}}px|link=]]
To expand your Beekeeping empire, you’ll need '''Bee Larvae'''.
* Obtained from '''/quest rewards''' or by breaking '''Bee Nests'''
* Place Larvae in a Hive to begin a '''15-minute incubation process'''
* Once ready, transform Larvae into a Worker Bee using:
** 1x Empty Honeycomb
** 10x '''<span style="color:#FFAA00">Pollen</span>''' (highest tier stored in the Hive)
* Transformation creates a random tier Bee from '''Basic → Mythic'''
* Using higher-tier Pollen increases the chance of stronger Bees


  <!-- simple tooltip CSS (scoped to this instance) -->
=All About Your Bees=
  <span style="
[[File:Bee Hive.png|400px|right|link=]]
    position:absolute; inset:0; pointer-events:none;
Each Bee has unique '''Traits''' that define its strength:
  ">
* Max Forage Time
    <style>
* Forage Speed
    .crafting-gui .hover-slot{position:absolute; width:{{{slot|48}}}px; height:{{{slot|48}}}px; transform:translate(-50%,-50%); pointer-events:auto;}
* Forage Distance
    .crafting-gui .hover-slot .tooltip{display:none; position:absolute; left:105%; top:50%; transform:translateY(-50%); z-index:3; background:#111; color:#fff; padding:6px; border:1px solid #444; border-radius:4px; max-width:360px; box-shadow:0 2px 6px rgba(0,0,0,.35);}
* Max Forage per Trip
    .crafting-gui .hover-slot:hover .tooltip{display:block;}
* Rest Time
    </style>
  </span>


  <!-- helper: compute coordinates with calc() -->
When Larvae become Worker Bees:
  <!-- defaults tuned for a typical 512px-wide crafting UI; adjust grid_x/grid_y/gaps if needed -->
* They roll between '''Basic → Mythic''' rarities
  <!-- row 1 -->
* Higher tier Bees = better Traits
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 0 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 0 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
* Basic Bees always have fixed base Traits
    <span class="tooltip">{{{tip1|}}}</span>
  </span>
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 1 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 0 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
    <span class="tooltip">{{{tip2|}}}</span>
  </span>
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 2 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 0 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
    <span class="tooltip">{{{tip3|}}}</span>
  </span>


  <!-- row 2 -->
Each Hive:
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 0 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 1 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
* Starts with 1x Basic Worker Bee
    <span class="tooltip">{{{tip4|}}}</span>
* Can have more Bees added manually (up to slot capacity)
  </span>
* Bees follow a cycle of Foraging → Resting, automatically gathering '''<span style="color:#FFAA00">Pollen</span>'''
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 1 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 1 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
    <span class="tooltip">{{{tip5|}}}</span>
  </span>
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 2 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 1 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
    <span class="tooltip">{{{tip6|}}}</span>
  </span>


  <!-- row 3 -->
=🌼 Pollen Collection and Uses=
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 0 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 2 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
As Bees work, your Hive fills with '''<span style="color:#FFAA00">Pollen</span>'''. This can be used for:
    <span class="tooltip">{{{tip7|}}}</span>
  </span>
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 1 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 2 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
    <span class="tooltip">{{{tip8|}}}</span>
  </span>
  <span class="hover-slot" style="left:calc({{{grid_x|96}}}px + 2 * ({{{slot|48}}}px + {{{gap_h|6}}}px)); top:calc({{{grid_y|44}}}px + 2 * ({{{slot|48}}}px + {{{gap_v|6}}}px));">
    <span class="tooltip">{{{tip9|}}}</span>
  </span>


  <!-- output slot -->
'''Filling Honeycomb'''
  <span class="hover-slot" style="left:{{{out_x|380}}}px; top:{{{out_y|94}}}px;">
* Empty Honeycomb inside the Hive combines with Pollen to form '''Filled Honeycomb'''
    <span class="tooltip">{{{tipout|}}}</span>
* Uses:
  </span>
** Feed to your Queen Bee for Hive EXP
*** Higher-tier Honeycomb = more EXP
** Extract and refine into Honey Bottles


</span>
=Honey Distilling=
</includeonly>
[[File:Honey Distiller.png|500px|right|link=]]
* Place Filled Honeycomb into a '''Honey Distiller''' (purchasable in '''/shop''' for $100,000)
* Each Honeycomb → 1x Honey Bottle (60s process, matching tier)
* Honey Bottles can be:
** Sold in '''/shop'''
** Used in custom recipes (Coming Soon!)

Latest revision as of 19:07, 5 September 2025

Beekeeping 🐝 Get ready to have some new friends buzzing around your Island, as Bees are making their way to Cosmic Sky!

How Beekeeping Works

The Beekeeping system introduces plenty of island-based content surrounding Bees, such as:

  • Upgradable Bee Hives & Queen Bees
  • Bee Larvae incubation
  • Tiered Worker Bees
  • Buffed crop growth for crops within range of your Bees
  • Tiered Pollen
  • Distilling Honeycomb into Tiered Honey Bottles
  • And more!

Starting your Beekeeping Journey

To begin, you will first need to craft a Bee Hive!

  • Bee Hives are crafted using 8x Empty Honeycomb in a Crafting Bench (same shape as a Chest).

Hover Over the Crafting GUI to see What Items to Craft With!

  • Empty Honeycomb can be obtained via:
    • /quest rewards
    • Destroying Bee Nests that spawn when an Oak Sapling grows with Flowers nearby
  • When placed on your Island, each Bee Hive begins with a Level 1 Queen Bee and a Basic Worker Bee.

Worker Bees will:

  • Leave the hive to forage after resting
  • Travel to nearby ungrown crops, spreading pollen to fully grow crops
  • Deposit collected Pollen into the hive before entering a Rest period

Bee Larvae & Incubation

To expand your Beekeeping empire, you’ll need Bee Larvae.

  • Obtained from /quest rewards or by breaking Bee Nests
  • Place Larvae in a Hive to begin a 15-minute incubation process
  • Once ready, transform Larvae into a Worker Bee using:
    • 1x Empty Honeycomb
    • 10x Pollen (highest tier stored in the Hive)
  • Transformation creates a random tier Bee from Basic → Mythic
  • Using higher-tier Pollen increases the chance of stronger Bees

All About Your Bees

Each Bee has unique Traits that define its strength:

  • Max Forage Time
  • Forage Speed
  • Forage Distance
  • Max Forage per Trip
  • Rest Time

When Larvae become Worker Bees:

  • They roll between Basic → Mythic rarities
  • Higher tier Bees = better Traits
  • Basic Bees always have fixed base Traits

Each Hive:

  • Starts with 1x Basic Worker Bee
  • Can have more Bees added manually (up to slot capacity)
  • Bees follow a cycle of Foraging → Resting, automatically gathering Pollen

🌼 Pollen Collection and Uses

As Bees work, your Hive fills with Pollen. This can be used for:

Filling Honeycomb

  • Empty Honeycomb inside the Hive combines with Pollen to form Filled Honeycomb
  • Uses:
    • Feed to your Queen Bee for Hive EXP
      • Higher-tier Honeycomb = more EXP
    • Extract and refine into Honey Bottles

Honey Distilling

  • Place Filled Honeycomb into a Honey Distiller (purchasable in /shop for $100,000)
  • Each Honeycomb → 1x Honey Bottle (60s process, matching tier)
  • Honey Bottles can be:
    • Sold in /shop
    • Used in custom recipes (Coming Soon!)