# AweMUD Next Generation - Default weather definition
# Copyright (C) 2003,2004  AwesomePlay Productions Inc.
# Sean Middleditch <elanthis@awemud.net>

pattern raining {
  chance: 30
  stage {
    desc: The rain is drizzling down.
  }
  stage {
    up: Rain begins falling more heavily.
    down: The rain reduces to a drizzle.
    desc: Rain is falling lightly.
  }
  stage {
    up: The rain begins to downpour.
    down: The rain eases up.
    desc: Rain is pouring heavily.
  }
  stage {
    up: A storm begins to spread its wrath.
    down: The storm subsides.
    desc: A rainstorm is raging across the land.
  }
  change cloudy: The rain ceases falling.
}
pattern snowing {
  chance: 10
  stage {
    desc: Snowflakes are gently floating to the ground.
  }
  stage {
    up: The snow begins to fall more heavily.
    down: The falling snow thins up.
    desc: Snowflakes are steadily falling.
  }
  stage {
    up: The falling snow thickens.
    down: The falling snow begins to thin out.
    desc: Snow is quickly covering the land.
  }
  change cloudy: The snow ceases falling.
}
pattern cloudy {
  chance: 70
  stage {
    desc: The sky is partly cloudy.
  }
  stage {
    up: The clouds thicken.
    down: The clouds thin out.
    desc: The sky is mostly cloudy.
  }
  stage {
    up: The sky is covered with clouds.
    down: The clouds begin to thin up.
    desc: The sky is blanketed in clouds.
  }
  change clear: The clouds clear up.
  change raining: Rain begins to fall.
  change snowing: Snow begins to fall.
}
pattern clear {
  chance: 100
  stage {
    desc: The sky is perfectly clear.
  }
  change cloudy: Clouds start moving in.
}
