mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
114 lines
3.5 KiB
Text
114 lines
3.5 KiB
Text
//--- OBJECT WRITE BEGIN ---
|
|
new SimGroup(MissionGroup) {
|
|
|
|
new ScriptObject(MissionInfo) {
|
|
name = "Super Bounce";
|
|
time = "0";
|
|
type = "Beginner";
|
|
artist = "Alex Swanson";
|
|
desc = "Learn to use the Super Bounce item.";
|
|
startHelpText = "Use the Super Bounce PowerUp to bound to the finish!";
|
|
level = "11";
|
|
goldTime = "5750";
|
|
};
|
|
new MissionArea(MissionArea) {
|
|
area = "-360 -648 720 1296";
|
|
flightCeiling = "300";
|
|
flightCeilingRange = "20";
|
|
locked = "true";
|
|
};
|
|
new Sky(Sky) {
|
|
position = "336 136 0";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
cloudHeightPer[0] = "0";
|
|
cloudHeightPer[1] = "0";
|
|
cloudHeightPer[2] = "0";
|
|
cloudSpeed1 = "0.0001";
|
|
cloudSpeed2 = "0.0002";
|
|
cloudSpeed3 = "0.0003";
|
|
visibleDistance = "500";
|
|
useSkyTextures = "1";
|
|
renderBottomTexture = "1";
|
|
SkySolidColor = "0.600000 0.600000 0.600000 1.000000";
|
|
fogDistance = "300";
|
|
fogColor = "0.600000 0.600000 0.600000 1.000000";
|
|
fogVolume1 = "-1 -1.73483e+009 -1.73483e+009";
|
|
fogVolume2 = "-1 -1.73483e+009 -1.73483e+009";
|
|
fogVolume3 = "-1 -1.73483e+009 -1.73483e+009";
|
|
materialList = "~/data/skies/sky_day.dml";
|
|
windVelocity = "1 0 0";
|
|
windEffectPrecipitation = "0";
|
|
noRenderBans = "1";
|
|
fogVolumeColor1 = "128.000000 128.000000 128.000000 -1734829824.000000";
|
|
fogVolumeColor2 = "128.000000 128.000000 128.000000 -1734829824.000000";
|
|
fogVolumeColor3 = "128.000000 128.000000 128.000000 -1734829824.000000";
|
|
};
|
|
new Sun() {
|
|
direction = "0.433884 0.614021 -0.659336";
|
|
color = "1.400000 1.200000 0.400000 1.000000";
|
|
ambient = "0.300000 0.300000 0.400000 1.000000";
|
|
};
|
|
new InteriorInstance() {
|
|
position = "0 0 0";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
interiorFile = "~/data/interiors/beginner/training_bounce.dif";
|
|
showTerrainInside = "0";
|
|
};
|
|
new Item() {
|
|
position = "9 0 32.317";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
dataBlock = "SuperBounceItem";
|
|
collideable = "0";
|
|
static = "1";
|
|
rotate = "1";
|
|
showHelpOnPickup = "1";
|
|
};
|
|
new StaticShape(StartPoint) {
|
|
position = "20 3.45457e-007 32";
|
|
rotation = "0 0 -1 89.9544";
|
|
scale = "1 1 1";
|
|
dataBlock = "StartPad";
|
|
};
|
|
new StaticShape(EndPoint) {
|
|
position = "-33.8 6.82336e-007 16";
|
|
rotation = "0 0 -1 90.5273";
|
|
scale = "1 1 1";
|
|
dataBlock = "EndPad";
|
|
};
|
|
new Trigger(Bounds) {
|
|
position = "-41.8833 11 0.407547";
|
|
rotation = "1 0 0 0";
|
|
scale = "68.8833 22 62.1455";
|
|
dataBlock = "InBoundsTrigger";
|
|
polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.0000000 1.0000000";
|
|
};
|
|
new ScriptObject() {
|
|
pad = "1501";
|
|
penaltyTime = "0";
|
|
bonusTime = "0";
|
|
gemCount = "0";
|
|
time = "0";
|
|
powerUp = "0";
|
|
};
|
|
new StaticShape() {
|
|
position = "-33.6524 0.937187 29.8223";
|
|
rotation = "0 0 -1 73.3386";
|
|
scale = "1 1 1";
|
|
dataBlock = "SignFinish";
|
|
};
|
|
new StaticShape() {
|
|
position = "8.23308 -4.38022 33.023";
|
|
rotation = "0 0 -1 104.278";
|
|
scale = "1 1 1";
|
|
dataBlock = "SignPlainDown";
|
|
};
|
|
new AudioProfile(MusicProfile) {
|
|
fileName = "~/data/sound/Beach Party.ogg";
|
|
description = "AudioMusic";
|
|
preload = "0";
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|