Super Hits (Eddie Money album)
Super Hits is a compilation album by Eddie Money, released in 1997, and contains 10 digitally remastered tracks.
Super Hits | ||||
---|---|---|---|---|
Greatest hits album by | ||||
Released | August 26, 1997 | |||
Recorded | 1977 - 1988 | |||
Genre | Rock, pop rock | |||
Length | 38:17 | |||
Label | Columbia | |||
Producer | Bruce Botnick Tom Dowd Eddie Money Ron Nevison Richie Zito | |||
Eddie Money chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
Allmusic |
Track listing
- "Baby Hold On" (Lyon, Money) - 3:33
- "Two Tickets to Paradise" (Money) - 3:59
- "Think I'm in Love" (Money, Oda) - 3:10
- "Running Back" (Bryan) - 4:01
- "Take Me Home Tonight" (Leeson, Vale, Greenwich, Barry, Spector) - 3:32
- "I Wanna Go Back" (Byron, Chuncey, Walker) - 3:58
- "Walk on Water" (Harms) - 4:39
- "We Should Be Sleeping" (Burns, Money, Lowry, Thompson) - 3:52
- "The Big Crash" (Hitchings, Money) - 3:39
- "Let's Be Lovers Again" (Lyon, Money) - 3:54
Original albums releases
- Tracks 1, 2 — Eddie Money (1977)
- Track 4, 10 — Playing for Keeps (1980)
- Track 3 — No Control (1982)
- Track 9 — Where's the Party? (1983)
- Tracks 5, 6, 8 — Can't Hold Back (1986)
- Track 7 — Nothing to Lose (1988)
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
gollark: As I said, this is not very good code.]
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.