Function prepareAscension

  • Sets up various iotms you may want to use in the coming ascension

    Parameters

    • ascensionPrep: {
          chateau?: {
              ceiling?: "antler chandelier" | "ceiling fan" | "artificial skylight";
              desk?: "fancy stationery set" | "Swiss piggy bank" | "continental juice bar";
              nightstand?: "foreign language tapes" | "bowl of potpourri" | "electric muscle stimulator";
          };
          eudora?:
              | "My Own Pen Pal kit"
              | "GameInformPowerDailyPro subscription card"
              | "Xi Receiver Unit"
              | "New-You Club Membership Form"
              | "Our Daily Candles™ order form";
          garden?:
              | "packet of pumpkin seeds"
              | "Peppermint Pip Packet"
              | "packet of dragon's teeth"
              | "packet of beer seeds"
              | "packet of winter seeds"
              | "packet of thanksgarden seeds"
              | "packet of tall grass seeds"
              | "packet of mushroom spores"
              | "packet of rock seeds";
          throwOnFail?: boolean;
      } = {}

      Configuration for various ascension prep settings. Any ommitted key will be kept as-is

      • Optionalchateau?: {
            ceiling?: "antler chandelier" | "ceiling fan" | "artificial skylight";
            desk?: "fancy stationery set" | "Swiss piggy bank" | "continental juice bar";
            nightstand?: "foreign language tapes" | "bowl of potpourri" | "electric muscle stimulator";
        }

        Chateau configuration

        • Optionalceiling?: "antler chandelier" | "ceiling fan" | "artificial skylight"
        • Optionaldesk?: "fancy stationery set" | "Swiss piggy bank" | "continental juice bar"
        • Optionalnightstand?: "foreign language tapes" | "bowl of potpourri" | "electric muscle stimulator"
      • Optionaleudora?:
            | "My Own Pen Pal kit"
            | "GameInformPowerDailyPro subscription card"
            | "Xi Receiver Unit"
            | "New-You Club Membership Form"
            | "Our Daily Candles™ order form"

        Eudora to which to switch

      • Optionalgarden?:
            | "packet of pumpkin seeds"
            | "Peppermint Pip Packet"
            | "packet of dragon's teeth"
            | "packet of beer seeds"
            | "packet of winter seeds"
            | "packet of thanksgarden seeds"
            | "packet of tall grass seeds"
            | "packet of mushroom spores"
            | "packet of rock seeds"

        Garden to which to switch

      • OptionalthrowOnFail?: boolean

        If true, this will throw an error when it fails to switch something

    Returns void