Advertisement
jmooroof

Untitled

Feb 24th, 2025
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     G.AddData({
  2.     name: 'More Atmosphere Messages',
  3.     author: 'jmooroof',
  4.     desc: 'A mod that adds more lines for each new day.',
  5.     engineVersion: 1,
  6.     requires: ['Default dataset*'],
  7.     func: function() {
  8.         const newDayLines = [
  9.             "It is raining.",
  10.             "A sense of foreboding fills the air.",
  11.             "In the stillness, the rustle of leaves hints at unseen watchers."
  12.             //"The sun is shining, and adventure awaits!",
  13.             "The song of a lone bird pierces the stillness.",
  14.             "The scent of [herb,herbs] assails your nostrils.",
  15.             "It feels as if the day itself is alive.",
  16.             "The air is heavy with the scent of damp earth.",
  17.             "The sun is hidden between thick clouds.",
  18.             "The night is eerily quiet.",
  19.             "The temperature drops sharply at dusk.",
  20.             "A faint whiff of flowers linger in the air.",
  21.             "Your skin prickles with the anticipation of the unknown.",
  22.             "Your pulse quickens, caught in the grip of an unbidden déjà vu.",
  23.             "Your dream fades away, leaving only a whisper in the back of your mind.",
  24.             "A fleeting image flickers in your mind, accompanied by an unsettling sense of dread that you can't quite place.<br>You shake it off, convincing yourself that it’s just your imagination.",
  25.             "Leaves tremble and rustle as a hidden beast thrashes in the branches, echoing the sound of thunder.",
  26.             "The distant cry of an animal echoes.",
  27.             "Something reeks.",
  28.             "A carpet of moss cusions your steps.",
  29.             "Can you really blame yourself?",
  30.             "A distant storm rumbles, promising a tempest on the horizon",
  31.             "A vibrant rainbow arcs across the sky.",
  32.             "What if the answers you seek are hidden within you?",
  33.             "The journey is as important as the destination."
  34.         ];
  35.  
  36.         if (!G.props['new day lines']) {
  37.             G.props['new day lines'] = [];
  38.             G.Message({type:'important tall',text:"Please load the More Atmosphere Messages after data.js or magix.",icon:[0,3]});
  39.         }
  40.  
  41.         G.props['new day lines'] = G.props['new day lines'].concat(newDayLines);
  42.         shuffle(G.props['new day lines']);
  43.  
  44.     }
  45. });
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement