Del juego de GBC está como hubiese sido el final de Montezuma:
Kafka 101
Hace 2 días.
(talento en video juegos)
20 S = STICK(S) 30 DX = (S = 5 OR S = 6 OR S = 7) - (S = 9 OR S = 10 OR S = 11) 40 DY = (S = 5 OR S = 9 OR S = 13) - (S = 6 OR S = 10 OR S = 14) 50 RETURN
// A barrel has reached a ladder. Decide whether or not to go down it. // Decompiled from Z80 Assembly by Don Hodges // July, 2008 Take_ladder = false ; If oil_fire == not_lit then { Take_ladder = true; Return ; } End if ; If Mario_height >= barrel_height then Return ; R = random(255) ; // random number between 0 and 255 inclusive R2 = R mod 3 ; // random number between 0 and 3 inclusive, based on R If R2 >= ((difficulty div 2 ) + 1) then Return ; If (barrel_x_position == Mario_x_position) or ((barrel_x_position < Mario_x_position) and (joystick_direction == left)) or ((barrel_x_position > Mario_x_position) and (joystick_direction == right)) then { Take_ladder = true; Return ; } End if ; If (R & 0x18) != 0 then Return ; // 75% chance of return without ladder Take_ladder = true; // 25% chance of taking ladder Return