Follow TV Tropes

Following

History Tropers / Ukokira

Go To

OR

Is there an issue? Send a MessageReason:
None


kys Razgriz

to:

kys RazgrizReboot will soon commence.
Is there an issue? Send a MessageReason:
None


This is my page

to:

This is my pagekys Razgriz

Changed: 16

Removed: 1851

Is there an issue? Send a MessageReason:
Reeee


hide();
penUp();
drawBackground();
for (var i = 0; i < 100; i++) {
drawAllSunbeams();
}
for (var i = 0; i < 50; i++) {
drawAllSeagrass(randomNumber(5, 20), randomNumber(2, 10));
}
for (var i = 0; i < 5; i++) {
drawAllSeaStars();
}
for (var i = 0; i < 15; i++) {
drawAllFish();
}
for (var i = 0; i < 300; i++) {
drawAllBubbles();
}



function drawAllSeagrass(radius, numWaves) {
moveTo(randomNumber(0,320),450);
turnTo(0);
drawSeagrass(radius, numWaves);
}

function drawAllSeaStars(){
moveTo(randomNumber(0,320), randomNumber(360,450));
drawSeaStar(randomNumber(10,30));
}

function drawAllFish(){
moveTo(randomNumber(0,320),randomNumber(0,300));
drawFish(randomNumber(5,20),randomNumber(200,255),randomNumber(100,150),120);
}

function drawAllBubbles(){
moveTo(randomNumber(0,320),randomNumber(0,450));
drawBubble(randomNumber(1,5));
}

function drawAllSunbeams(){
moveTo(randomNumber(-50,320),0);
turnTo(randomNumber(165,175));
drawSunbeam(randomNumber(100,400));
}

function drawBackground(){
penColor("DarkBlue");
dot(1000);
}

function drawSeaStar(size){
penRGB(255,0,255);
penWidth(10);
penDown();
turnTo(0);

moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);

penUp();
}

function drawSeagrass(radius, numWaves){
penRGB(0,randomNumber(100,200),0);
penWidth(3);
penDown();
arcLeft(30,radius);
for(var i = 0; i < numWaves; i++){
arcRight(60,radius);
arcLeft(60,radius);
}
penUp();
}

function drawFish(size, red, green, blue){
penRGB(red,green,blue);
penWidth(size);
penDown();

dot(size);
turnTo(90);
moveForward(size);

turnLeft(30);
moveForward(size);
turnRight(120);
moveForward(size);
turnRight(120);
moveForward(size);
turnRight(120);

penUp();
}

function drawBubble(size){
penRGB(100,100,255,0.2);
dot(size);
}

function drawSunbeam(size){
penDown();
penWidth(randomNumber(1,15));
penRGB(255,255,255,0.1);
moveForward(size);
penUp();
}

to:

hide();
penUp();
drawBackground();
for (var i = 0; i < 100; i++) {
drawAllSunbeams();
}
for (var i = 0; i < 50; i++) {
drawAllSeagrass(randomNumber(5, 20), randomNumber(2, 10));
}
for (var i = 0; i < 5; i++) {
drawAllSeaStars();
}
for (var i = 0; i < 15; i++) {
drawAllFish();
}
for (var i = 0; i < 300; i++) {
drawAllBubbles();
}



function drawAllSeagrass(radius, numWaves) {
moveTo(randomNumber(0,320),450);
turnTo(0);
drawSeagrass(radius, numWaves);
}

function drawAllSeaStars(){
moveTo(randomNumber(0,320), randomNumber(360,450));
drawSeaStar(randomNumber(10,30));
}

function drawAllFish(){
moveTo(randomNumber(0,320),randomNumber(0,300));
drawFish(randomNumber(5,20),randomNumber(200,255),randomNumber(100,150),120);
}

function drawAllBubbles(){
moveTo(randomNumber(0,320),randomNumber(0,450));
drawBubble(randomNumber(1,5));
}

function drawAllSunbeams(){
moveTo(randomNumber(-50,320),0);
turnTo(randomNumber(165,175));
drawSunbeam(randomNumber(100,400));
}

function drawBackground(){
penColor("DarkBlue");
dot(1000);
}

function drawSeaStar(size){
penRGB(255,0,255);
penWidth(10);
penDown();
turnTo(0);

moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);

penUp();
}

function drawSeagrass(radius, numWaves){
penRGB(0,randomNumber(100,200),0);
penWidth(3);
penDown();
arcLeft(30,radius);
for(var i = 0; i < numWaves; i++){
arcRight(60,radius);
arcLeft(60,radius);
}
penUp();
}

function drawFish(size, red, green, blue){
penRGB(red,green,blue);
penWidth(size);
penDown();

dot(size);
turnTo(90);
moveForward(size);

turnLeft(30);
moveForward(size);
turnRight(120);
moveForward(size);
turnRight(120);
moveForward(size);
turnRight(120);

penUp();
}

function drawBubble(size){
penRGB(100,100,255,0.2);
dot(size);
}

function drawSunbeam(size){
penDown();
penWidth(randomNumber(1,15));
penRGB(255,255,255,0.1);
moveForward(size);
penUp();
}
This is my page

Added: 1851

Changed: 7

Is there an issue? Send a MessageReason:
None



to:

hide();
penUp();
drawBackground();
for (var i = 0; i < 100; i++) {
drawAllSunbeams();
}
for (var i = 0; i < 50; i++) {
drawAllSeagrass(randomNumber(5, 20), randomNumber(2, 10));
}
for (var i = 0; i < 5; i++) {
drawAllSeaStars();
}
for (var i = 0; i < 15; i++) {
drawAllFish();
}
for (var i = 0; i < 300; i++) {
drawAllBubbles();
}



function drawAllSeagrass(radius, numWaves) {
moveTo(randomNumber(0,320),450);
turnTo(0);
drawSeagrass(radius, numWaves);
}

function drawAllSeaStars(){
moveTo(randomNumber(0,320), randomNumber(360,450));
drawSeaStar(randomNumber(10,30));
}

function drawAllFish(){
moveTo(randomNumber(0,320),randomNumber(0,300));
drawFish(randomNumber(5,20),randomNumber(200,255),randomNumber(100,150),120);
}

function drawAllBubbles(){
moveTo(randomNumber(0,320),randomNumber(0,450));
drawBubble(randomNumber(1,5));
}

function drawAllSunbeams(){
moveTo(randomNumber(-50,320),0);
turnTo(randomNumber(165,175));
drawSunbeam(randomNumber(100,400));
}

function drawBackground(){
penColor("DarkBlue");
dot(1000);
}

function drawSeaStar(size){
penRGB(255,0,255);
penWidth(10);
penDown();
turnTo(0);

moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);
moveForward(size);
turnRight(144);

penUp();
}

function drawSeagrass(radius, numWaves){
penRGB(0,randomNumber(100,200),0);
penWidth(3);
penDown();
arcLeft(30,radius);
for(var i = 0; i < numWaves; i++){
arcRight(60,radius);
arcLeft(60,radius);
}
penUp();
}

function drawFish(size, red, green, blue){
penRGB(red,green,blue);
penWidth(size);
penDown();

dot(size);
turnTo(90);
moveForward(size);

turnLeft(30);
moveForward(size);
turnRight(120);
moveForward(size);
turnRight(120);
moveForward(size);
turnRight(120);

penUp();
}

function drawBubble(size){
penRGB(100,100,255,0.2);
dot(size);
}

function drawSunbeam(size){
penDown();
penWidth(randomNumber(1,15));
penRGB(255,255,255,0.1);
moveForward(size);
penUp();
}

Changed: 75

Removed: 137

Is there an issue? Send a MessageReason:
I have a terrible taste apparantly.


[[quoteright:118:http://static.tvtropes.org/pmwiki/pub/images/th_9531.jpg]]
[[caption-width-right:118:Nya!]]!


Ukokira decides what to do on his wall. And When.

Unless some Mod gets pissed at me. I doubt that though.

to:

[[quoteright:118:http://static.tvtropes.org/pmwiki/pub/images/th_9531.jpg]]
[[caption-width-right:118:Nya!]]!


Ukokira decides what to do on his wall. And When.

Unless some Mod gets pissed at me. I doubt that though.
Is there an issue? Send a MessageReason:
None


[[caption-width-right:118:some caption text]]!


to:

[[caption-width-right:118:some caption text]]!

[[caption-width-right:118:Nya!]]!

Is there an issue? Send a MessageReason:
None


Ukokira decides what to do on his wall. And When.

to:

Ukokira decides what to do on his wall. And When.When.

Unless some Mod gets pissed at me. I doubt that though.

Added: 96

Changed: 108

Is there an issue? Send a MessageReason:
None


Ukokira decides what to do on his wall. And When.

to:

Ukokira [[quoteright:118:http://static.tvtropes.org/pmwiki/pub/images/th_9531.jpg]]
[[caption-width-right:118:some caption text]]!


Ukokira
decides what to do on his wall. And When.
Is there an issue? Send a MessageReason:
None


Ukokira decides what to out on his wall. And When.

to:

Ukokira decides what to out do on his wall. And When.

Changed: 105

Removed: 511

Is there an issue? Send a MessageReason:
None


[[quoteright:118:http://static.tvtropes.org/pmwiki/pub/images/th_9531.jpg]]
[[caption-width-right:118:Izaya-kun]]! Anime manga books games That i am reading/watching

* DeathNote: manga and novels finished... currently watching Anime and waiting for the new movies.
* {{Bleach}}: Reading and watching the Manga and Anime
* {{Durarara}}: Reading both the light novels and manga.
* ShadowOfTheColossus: Playing this awesoume game.
* {{ICO}}: same as above
* ResidentEvil: to be more specific ResidentEvil 1,2,3,5, and 6. I might replay 4 some time.
* TheWorldEndsWithYou: Playing DS and solo remix

to:

[[quoteright:118:http://static.tvtropes.org/pmwiki/pub/images/th_9531.jpg]]
[[caption-width-right:118:Izaya-kun]]! Anime manga books games That i am reading/watching

* DeathNote: manga and novels finished... currently watching Anime and waiting for the new movies.
* {{Bleach}}: Reading and watching the Manga and Anime
* {{Durarara}}: Reading both the light novels and manga.
* ShadowOfTheColossus: Playing this awesoume game.
* {{ICO}}: same as above
* ResidentEvil:
Ukokira decides what to be more specific ResidentEvil 1,2,3,5, and 6. I might replay 4 some time.
* TheWorldEndsWithYou: Playing DS and solo remix
out on his wall. And When.
Is there an issue? Send a MessageReason:
None





[[caption-width-right:118:some caption text]]! Anime manga books games That i am reading/watching

to:

[[caption-width-right:118:some caption text]]! [[caption-width-right:118:Izaya-kun]]! Anime manga books games That i am reading/watching
Is there an issue? Send a MessageReason:
None


! Anime manga books games That i am reading/watching

to:

! [[quoteright:118:http://static.tvtropes.org/pmwiki/pub/images/th_9531.jpg]]
[[caption-width-right:118:some caption text]]!
Anime manga books games That i am reading/watching
Is there an issue? Send a MessageReason:
None


http://www.google.com/imgres?um=1&hl=en&safe=active&sa=N&rls=com.microsoft:en-us:IE-Address&biw=1280&bih=884&tbm=isch&tbnid=OtzjqwfhGoLFFM:&imgrefurl=http://freax456.deviantart.com/art/Izaya-Orihara-165588517%3Foffset%3D10&docid=QwjEadHhQvcVdM&imgurl=http://www.deviantart.com/download/165588517/Izaya_Orihara_by_Freax456.jpg&w=750&h=600&ei=sIxtUPS5DoOe9QSE2IFI&zoom=1&iact=hc&vpx=646&vpy=358&dur=319&hovh=201&hovw=251&tx=174&ty=122&sig=110558889146977458172&page=2&tbnh=152&tbnw=204&start=24&ndsp=31&ved=1t:429,r:3,s:24,i:165

to:

http://www.google.com/imgres?um=1&hl=en&safe=active&sa=N&rls=com.microsoft:en-us:IE-Address&biw=1280&bih=884&tbm=isch&tbnid=OtzjqwfhGoLFFM:&imgrefurl=http://freax456.deviantart.com/art/Izaya-Orihara-165588517%3Foffset%3D10&docid=QwjEadHhQvcVdM&imgurl=http://www.deviantart.com/download/165588517/Izaya_Orihara_by_Freax456.jpg&w=750&h=600&ei=sIxtUPS5DoOe9QSE2IFI&zoom=1&iact=hc&vpx=646&vpy=358&dur=319&hovh=201&hovw=251&tx=174&ty=122&sig=110558889146977458172&page=2&tbnh=152&tbnw=204&start=24&ndsp=31&ved=1t:429,r:3,s:24,i:165
Is there an issue? Send a MessageReason:
None


http://fc03.deviantart.net/fs44/f/2009/143/1/b/_The_World_Ends_with_You__by_meru_chan.jpg

to:

http://fc03.http://www.google.com/imgres?um=1&hl=en&safe=active&sa=N&rls=com.microsoft:en-us:IE-Address&biw=1280&bih=884&tbm=isch&tbnid=OtzjqwfhGoLFFM:&imgrefurl=http://freax456.deviantart.net/fs44/f/2009/143/1/b/_The_World_Ends_with_You__by_meru_chan.jpg
com/art/Izaya-Orihara-165588517%3Foffset%3D10&docid=QwjEadHhQvcVdM&imgurl=http://www.deviantart.com/download/165588517/Izaya_Orihara_by_Freax456.jpg&w=750&h=600&ei=sIxtUPS5DoOe9QSE2IFI&zoom=1&iact=hc&vpx=646&vpy=358&dur=319&hovh=201&hovw=251&tx=174&ty=122&sig=110558889146977458172&page=2&tbnh=152&tbnw=204&start=24&ndsp=31&ved=1t:429,r:3,s:24,i:165
Is there an issue? Send a MessageReason:
None


* ResidentEvil: to be more specific RE1,2,3,5, and 6. I might replay 4 some time.

to:

* ResidentEvil: to be more specific RE1,2,3,5, ResidentEvil 1,2,3,5, and 6. I might replay 4 some time.
Is there an issue? Send a MessageReason:
None


* Bleach: Reading and watching the Manga and Anime
* Durarara: Reading both the light novels and manga.

to:

* Bleach: {{Bleach}}: Reading and watching the Manga and Anime
* Durarara: {{Durarara}}: Reading both the light novels and manga.



* Ico: same as above

to:

* Ico: {{ICO}}: same as above
Is there an issue? Send a MessageReason:
None


* Durarara!!: Reading both the light novels and manga.

to:

* Durarara!!: Durarara: Reading both the light novels and manga.
Is there an issue? Send a MessageReason:
None


* ICO: same as above

to:

* ICO: Ico: same as above
Is there an issue? Send a MessageReason:
None

Added DiffLines:

http://fc03.deviantart.net/fs44/f/2009/143/1/b/_The_World_Ends_with_You__by_meru_chan.jpg

! Anime manga books games That i am reading/watching

* DeathNote: manga and novels finished... currently watching Anime and waiting for the new movies.
* Bleach: Reading and watching the Manga and Anime
* Durarara!!: Reading both the light novels and manga.
* ShadowOfTheColossus: Playing this awesoume game.
* ICO: same as above
* ResidentEvil: to be more specific RE1,2,3,5, and 6. I might replay 4 some time.
* TheWorldEndsWithYou: Playing DS and solo remix

Top