package
{
import flash.display.MovieClip;
public class BigTittyBruisers extends MovieClip
{
public function BigTittyBruisers()
{ // constructor code
trace("Beware the Boobzooka!");
var purpleslate:MovieClip; //names variable types
var tits:MovieClip;
var warptime:MovieClip;
var boobzooka:MovieClip;
var zookafuel:MovieClip;
var defyingtext:MovieClip;
var jobtext:MovieClip;
purpleslate = new PurpleSlate; //declares variables
tits = new Tits;
warptime = new WarpTime;
boobzooka = new BoobZookaLessFuel;
zookafuel = new ZookaFuel;
defyingtext = new DefyingText;
jobtext = new JobText;
purpleslate.scaleX = 2.0; //modifies variables
purpleslate.scaleY = 2.0;
tits.x = 285;
tits.y = 275;
tits.scaleX = 1.1;
tits.scaleY = 1.1;
warptime.x = 30;
warptime.y = 145;
warptime.scaleX = 1.25;
warptime.scaleY = 1.25;
boobzooka.x = -75;
boobzooka.y = 140;
boobzooka.scaleX = 1.5;
boobzooka.scaleY = 1.25;
zookafuel.x = 450;
zookafuel.y = 125;
defyingtext.x = 100;
defyingtext.y = -125;
defyingtext.scaleX = 2;
defyingtext.scaleY = 2;
jobtext.x = 300;
jobtext.y = 300;
addChild(purpleslate); //drops variables on stage
addChild(tits);
addChild(warptime);
addChild(boobzooka);
addChild(zookafuel);
addChild(defyingtext);
addChild(jobtext);
}
}
}
No comments:
Post a Comment