commit ccf87df36d55d6030e53119fb905a516fd7827b5 Author: mattie726 Date: Tue Aug 25 22:54:08 2026 -0700 Initial commit: N64 Tracker source from server (excludes Coverart images) diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..99d6520 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,29 @@ +{ + "permissions": { + "allow": [ + "Bash(python3 -c \"\nimport subprocess\n# Try using built-in tools to extract text from PDF\nresult = subprocess.run\\([''mdls'', ''/Users/matt/Desktop/VideoGameList/N64.pdf''], capture_output=True, text=True\\)\nprint\\(result.stdout[:500]\\)\n\")", + "Bash(pip3 install:*)", + "Bash(python3:*)", + "WebFetch(domain:gamesdb.launchbox-app.com)", + "Bash(docker:*)", + "Bash(curl:*)", + "Bash(open http://localhost:8080)", + "Bash(awk:*)", + "Bash(shuf)", + "Bash(/Users/matt/Desktop/VideoGameList/build_coverart_mapping.py:*)", + "Bash(/Users/matt/Desktop/VideoGameList/fix_coverart_mapping.py:*)", + "WebFetch(domain:www.pricecharting.com)", + "Bash(/tmp/scrape_prices.py:*)", + "Bash(/tmp/match_prices.py:*)", + "Bash(/tmp/fuzzy_prices.py:*)", + "Bash(echo:*)", + "WebFetch(domain:www.rarityguide.com)", + "Bash(pip install:*)", + "Bash(/tmp/scrape_rarity.py:*)", + "Bash(/tmp/match_rarity.py:*)", + "WebFetch(domain:www.dkoldies.com)", + "Bash(rsync:*)", + "Bash(ssh:*)" + ] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..976dc83 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.env +data/ +__pycache__/ +*.pyc +Coverart/ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3eb827f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY app.py . +COPY static/ static/ + +# Persistent data dir (games.json lives here via volume) +RUN mkdir -p /app/data + +COPY games.json /app/data/games.json + +# Coverart/ is mounted at runtime via docker-compose volume +RUN mkdir -p /app/coverart + +EXPOSE 5000 + +CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "120", "app:app"] diff --git a/N64.pdf b/N64.pdf new file mode 100644 index 0000000..af4f3ee Binary files /dev/null and b/N64.pdf differ diff --git a/app.py b/app.py new file mode 100644 index 0000000..4dc3f8d --- /dev/null +++ b/app.py @@ -0,0 +1,464 @@ +from flask import (Flask, jsonify, request, send_from_directory, + send_file, abort, session, redirect, url_for) +import json +import os +import requests +from bs4 import BeautifulSoup +import re +import hashlib +import secrets +import threading +from PIL import Image + +# ── Config ──────────────────────────────────────────────────────────────── +BASE_PREFIX = '/n64' # subpath for nginx reverse proxy +DATA_FILE = '/app/data/games.json' +SETTINGS_FILE= '/app/data/settings.json' +ART_BASE = '/app/coverart' +THUMB_DIR = '/app/data/thumbs' # persisted on the game-data volume +THUMB_WIDTH = 300 # px — enough for the card grid + +app = Flask(__name__, static_folder='static') +app.secret_key = os.environ.get('SECRET_KEY', secrets.token_hex(32)) + +# ── Thumbnail generator ──────────────────────────────────────────────────── +def _make_thumb(src_path, thumb_path): + """Convert a large PNG to a small WebP thumbnail.""" + try: + with Image.open(src_path) as img: + # Maintain aspect ratio, limit width to THUMB_WIDTH + w, h = img.size + ratio = THUMB_WIDTH / w + new_h = int(h * ratio) + img = img.convert('RGB') + img = img.resize((THUMB_WIDTH, new_h), Image.LANCZOS) + img.save(thumb_path, 'WEBP', quality=82, method=4) + except Exception as e: + print(f'Thumb error {src_path}: {e}') + +def generate_thumbnails(): + """Walk ART_BASE and generate WebP thumbs for any PNG that needs one.""" + os.makedirs(THUMB_DIR, exist_ok=True) + todo = [] + for fname in os.listdir(ART_BASE): + if not fname.lower().endswith('.png'): + continue + src = os.path.join(ART_BASE, fname) + thumb = os.path.join(THUMB_DIR, os.path.splitext(fname)[0] + '.webp') + if not os.path.isfile(thumb): + todo.append((src, thumb)) + if todo: + print(f'Generating {len(todo)} thumbnails...') + for src, thumb in todo: + _make_thumb(src, thumb) + print('Thumbnails done.') + +# Run thumbnail generation in background so startup isn't blocked +threading.Thread(target=generate_thumbnails, daemon=True).start() + +# ── Settings helpers ─────────────────────────────────────────────────────── +DEFAULT_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'n64admin') + +def _hash(pw): + return hashlib.sha256(pw.encode()).hexdigest() + +def load_settings(): + if os.path.isfile(SETTINGS_FILE): + with open(SETTINGS_FILE) as f: + return json.load(f) + # First-run: persist hashed default + s = {'password_hash': _hash(DEFAULT_PASSWORD)} + save_settings(s) + return s + +def save_settings(s): + with open(SETTINGS_FILE, 'w') as f: + json.dump(s, f, indent=2) + +def check_password(pw): + return _hash(pw) == load_settings().get('password_hash', '') + +def is_authed(): + return session.get('authed') is True + +def require_auth(f): + """Decorator: returns 401 JSON if not authenticated.""" + from functools import wraps + @wraps(f) + def wrapped(*args, **kwargs): + if not is_authed(): + return jsonify({'error': 'Unauthorized'}), 401 + return f(*args, **kwargs) + return wrapped + +# ── Game data helpers ────────────────────────────────────────────────────── +def load_games(): + with open(DATA_FILE, 'r') as f: + return json.load(f) + +def save_games(games): + with open(DATA_FILE, 'w') as f: + json.dump(games, f, indent=2) + +# ── Static / index ───────────────────────────────────────────────────────── +@app.route(BASE_PREFIX + '/') +@app.route(BASE_PREFIX) +def index(): + return send_from_directory('static', 'index.html') + +# ── Cover art ────────────────────────────────────────────────────────────── +@app.route(BASE_PREFIX + '/art/') +def serve_art(art_path): + full = os.path.join(ART_BASE, art_path) + if not os.path.isfile(full): + abort(404) + + # Serve pre-generated WebP thumbnail if available (much smaller) + base_name = os.path.splitext(art_path)[0] + thumb_path = os.path.join(THUMB_DIR, base_name + '.webp') + + if os.path.isfile(thumb_path): + resp = send_file(thumb_path, mimetype='image/webp') + else: + # Thumb not ready yet — serve original and kick off generation + resp = send_file(full, mimetype='image/png') + threading.Thread(target=_make_thumb, args=(full, thumb_path), daemon=True).start() + + # Cache aggressively — images never change + resp.headers['Cache-Control'] = 'public, max-age=31536000, immutable' + return resp + +# ── Auth endpoints ───────────────────────────────────────────────────────── +@app.route(BASE_PREFIX + '/api/auth/login', methods=['POST']) +def login(): + data = request.get_json(silent=True) or {} + pw = data.get('password', '') + if check_password(pw): + session['authed'] = True + return jsonify({'ok': True}) + return jsonify({'ok': False, 'error': 'Wrong password'}), 401 + +@app.route(BASE_PREFIX + '/api/auth/logout', methods=['POST']) +def logout(): + session.clear() + return jsonify({'ok': True}) + +@app.route(BASE_PREFIX + '/api/auth/status', methods=['GET']) +def auth_status(): + return jsonify({'authed': is_authed()}) + +@app.route(BASE_PREFIX + '/api/auth/change-password', methods=['POST']) +@require_auth +def change_password(): + data = request.get_json(silent=True) or {} + current = data.get('current', '') + new_pw = data.get('new', '') + if not check_password(current): + return jsonify({'ok': False, 'error': 'Current password incorrect'}), 400 + if len(new_pw) < 4: + return jsonify({'ok': False, 'error': 'Password must be at least 4 characters'}), 400 + s = load_settings() + s['password_hash'] = _hash(new_pw) + save_settings(s) + return jsonify({'ok': True}) + +# ── Public API ──────────────────────────────────────────────────────────── +@app.route(BASE_PREFIX + '/api/games', methods=['GET']) +def get_games(): + games = load_games() + query = request.args.get('q', '').lower().strip() + if query: + games = [g for g in games if query in g['title'].lower()] + return jsonify(games) + +@app.route(BASE_PREFIX + '/api/games/owned', methods=['GET']) +def get_owned(): + games = load_games() + return jsonify([g for g in games if g.get('owned')]) + +CASE_COST = 7.00 + +@app.route(BASE_PREFIX + '/api/stats', methods=['GET']) +def get_stats(): + games = load_games() + total = len(games) + owned = sum(1 for g in games if g.get('owned')) + collection_value = sum( + g.get('loose_price') or 0 + for g in games if g.get('owned') and g.get('loose_price') + ) + unowned_games = [g for g in games if not g.get('owned')] + needs_cost = sum( + (g.get('loose_price') or 0) + CASE_COST + for g in unowned_games + ) + return jsonify({ + 'total': total, + 'owned': owned, + 'unowned': total - owned, + 'collection_value': round(collection_value, 2), + 'needs_cost': round(needs_cost, 2) + }) + +# ── Protected write API ─────────────────────────────────────────────────── +@app.route(BASE_PREFIX + '/api/games//own', methods=['POST']) +@require_auth +def toggle_own(game_id): + games = load_games() + for g in games: + if g['id'] == game_id: + g['owned'] = not g.get('owned', False) + save_games(games) + if g['owned'] and not g.get('cover_art_local'): + info = scrape_game_info(g['title']) + if info: + games = load_games() + for gg in games: + if gg['id'] == game_id: + gg.update(info) + break + save_games(games) + g.update(info) + return jsonify(g) + return jsonify({'error': 'Game not found'}), 404 + +@app.route(BASE_PREFIX + '/api/games//flags', methods=['POST']) +@require_auth +def update_flags(game_id): + games = load_games() + data = request.get_json(silent=True) or {} + for g in games: + if g['id'] == game_id: + for field in ('has_case', 'cleaned', 'battery_replaced'): + if field in data: + g[field] = bool(data[field]) + save_games(games) + return jsonify(g) + return jsonify({'error': 'Game not found'}), 404 + +@app.route(BASE_PREFIX + '/api/games//info', methods=['GET']) +def get_game_info(game_id): + games = load_games() + for g in games: + if g['id'] == game_id: + if not g.get('cover_art_local') and not g.get('cover_art_remote'): + info = scrape_game_info(g['title']) + if info: + g.update(info) + save_games(games) + return jsonify(g) + return jsonify({'error': 'Game not found'}), 404 + +@app.route(BASE_PREFIX + '/api/rarity/refresh', methods=['POST']) +@require_auth +def refresh_rarity(): + try: + rarity_data = scrape_rarityguide() + if not rarity_data: + return jsonify({'error': 'Scrape returned no data'}), 502 + games = load_games() + updated = 0 + for g in games: + match = _match_rarity(g['title'], rarity_data) + if match: + g['rarity_pct'] = match['rarity_pct'] + g['rarity_label'] = match['rarity_label'] + updated += 1 + elif 'rarity_pct' not in g: + g['rarity_pct'] = None + g['rarity_label'] = None + save_games(games) + return jsonify({'updated': updated, 'total': len(games)}) + except Exception as e: + print(f'Rarity refresh error: {e}') + return jsonify({'error': str(e)}), 500 + +@app.route(BASE_PREFIX + '/api/prices/refresh', methods=['POST']) +@require_auth +def refresh_prices(): + try: + prices = scrape_pricecharting() + if not prices: + return jsonify({'error': 'Scrape returned no data'}), 502 + games = load_games() + updated = 0 + for g in games: + matched = _match_price(g['title'], prices) + if matched is not None: + g['loose_price'] = matched + updated += 1 + elif 'loose_price' not in g: + g['loose_price'] = None + save_games(games) + collection_value = round(sum( + g.get('loose_price') or 0 + for g in games if g.get('owned') and g.get('loose_price') + ), 2) + return jsonify({'updated': updated, 'total': len(games), 'collection_value': collection_value}) + except Exception as e: + print(f'Price refresh error: {e}') + return jsonify({'error': str(e)}), 500 + +# ── Scrapers ─────────────────────────────────────────────────────────────── +def scrape_rarityguide(): + headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36'} + base = 'https://www.rarityguide.com/n64_view.php' + results = {} + for first in [None, 101, 201]: + params = {'SortDirection': 'desc', 'SortField': '5', 'recordsPerPage': '100'} + if first: + params['FirstRecord'] = str(first) + try: + resp = requests.get(base, params=params, headers=headers, timeout=20) + if resp.status_code != 200: + continue + except Exception: + continue + soup = BeautifulSoup(resp.text, 'html.parser') + for row in soup.find_all('tr'): + tds = row.find_all('td') + if len(tds) < 5: + continue + title = tds[1].get_text(strip=True) + if not title: + continue + img = tds[4].find('img') + if not img: + continue + alt = img.get('alt', '') + m = re.match(r'(\d+)\s*percent\s*\(([^)]+)\)', alt) + if not m: + continue + results[title] = {'rarity_pct': int(m.group(1)), 'rarity_label': m.group(2).strip()} + return results if results else None + +def _match_rarity(title, rarity_data): + import difflib, unicodedata + def norm(s): + s = unicodedata.normalize('NFD', s) + s = ''.join(c for c in s if unicodedata.category(c) != 'Mn') + s = s.lower() + s = re.sub(r'[^a-z0-9\s\-]', '', s) + s = re.sub(r'\s+', ' ', s).strip() + for art in ('the ', 'a ', 'an '): + if s.startswith(art): s = s[len(art):] + return s + tn = norm(title) + for k, v in rarity_data.items(): + if norm(k) == tn: return v + keys = list(rarity_data.keys()) + nkeys = [norm(k) for k in keys] + matches = difflib.get_close_matches(tn, nkeys, n=1, cutoff=0.85) + if matches: + return rarity_data[keys[nkeys.index(matches[0])]] + return None + +def scrape_pricecharting(): + headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36'} + base_url = 'https://www.pricecharting.com/console/nintendo-64' + prices = {} + session = requests.Session() + resp = session.get(base_url, headers=headers, timeout=20) + if resp.status_code != 200: + return None + + def parse_page(html): + soup = BeautifulSoup(html, 'html.parser') + table = soup.find('table', id='games_table') + if not table: return soup, False + for row in table.find_all('tr'): + title_td = row.find('td', class_='title') + price_td = row.find('td', class_='used_price') + if not title_td or not price_td: continue + a = title_td.find('a') + if not a: continue + span = price_td.find('span', class_='js-price') + price_text = span.get_text(strip=True) if span else 'N/A' + try: + prices[a.get_text(strip=True)] = float(price_text.replace('$','').replace(',','')) + except (ValueError, AttributeError): + prices[a.get_text(strip=True)] = None + form = soup.find('form', {'id': re.compile(r'pagination')}) or soup.find('input', {'name': 'cursor'}) + if form: + cursor_input = soup.find('input', {'name': 'cursor'}) + return soup, cursor_input + return soup, None + + soup, cursor_input = parse_page(resp.text) + while cursor_input: + cursor_val = cursor_input.get('value', '') + try: + resp = session.post(base_url, headers=headers, timeout=20, + data={'cursor': cursor_val, 'q': '', 'sort': 'name'}) + if resp.status_code != 200: break + except Exception: break + _, cursor_input = parse_page(resp.text) + return prices + +def _normalize(s): + s = s.lower() + s = re.sub(r'[éèê]', 'e', s); s = re.sub(r'[óò]', 'o', s) + s = re.sub(r'[úù]', 'u', s); s = re.sub(r'°', '', s) + s = re.sub(r'[^a-z0-9\s]', '', s) + s = re.sub(r'\s+', ' ', s).strip() + for art in ('the ', 'a ', 'an '): + if s.startswith(art): s = s[len(art):] + return s + +def _match_price(title, prices): + if title in prices: return prices[title] + tl = title.lower() + for k, v in prices.items(): + if k.lower() == tl: return v + tn = _normalize(title) + for k, v in prices.items(): + if _normalize(k) == tn: return v + return None + +def scrape_game_info(title): + try: + from urllib.parse import quote + headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36'} + resp = requests.get(f'https://gamesdb.launchbox-app.com/games/results/{quote(title)}', + headers=headers, timeout=15) + if resp.status_code != 200: return None + soup = BeautifulSoup(resp.text, 'html.parser') + title_lower = title.lower().strip() + clean_title = re.sub(r'[^a-z0-9\s]', '', title_lower).strip() + game_link = None + for link in soup.find_all('a', href=True): + href = link['href'] + if '/games/details/' not in href: continue + link_text = link.get_text(strip=True) + if 'Nintendo 64' not in link_text or 'Released' not in link_text: continue + if re.sub(r'[^a-z0-9\s]', '', link_text.lower()).startswith(clean_title): + game_link = href; break + if not game_link: return None + resp2 = requests.get(f'https://gamesdb.launchbox-app.com{game_link}', headers=headers, timeout=15) + if resp2.status_code != 200: return None + soup2 = BeautifulSoup(resp2.text, 'html.parser') + info = {} + for img in soup2.find_all('img'): + if 'launchbox-app.com' in img.get('src','') and 'm-auto' in img.get('class',[]): + info['cover_art_remote'] = img['src']; break + for dt in soup2.find_all('dt'): + dd = dt.find_next_sibling('dd') + if not dd: continue + label = dt.get_text(strip=True) + value = dd.get_text(strip=True) + if label == 'Developers': info['developer'] = value[:100] + elif label == 'Genre': info['genres'] = value[:100] + elif label == 'ESRB': info['rating'] = value[:50] + elif label == 'Max Players': info['players'] = value[:50] + if not info.get('description'): + for p in soup2.find_all('p'): + text = p.get_text(strip=True) + if len(text) > 80: + info['description'] = text[:500]; break + return info if info else None + except Exception as e: + print(f"Scraping error for '{title}': {e}") + return None + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=5000, debug=True) diff --git a/build_coverart_mapping.py b/build_coverart_mapping.py new file mode 100644 index 0000000..691ba5f --- /dev/null +++ b/build_coverart_mapping.py @@ -0,0 +1,59 @@ +import json +import os +import re + +COVERART_DIR = "/Users/matt/Desktop/VideoGameList/Coverart" +GAMES_JSON = "/Users/matt/Desktop/VideoGameList/games.json" + +def title_to_filename(title): + """Transform a game title to its expected Coverart filename.""" + transformed = title.replace("'", "_").replace(":", "_") + return f"{transformed}-01.png" + +def main(): + # 1. Build a set of available Coverart filenames + coverart_files = set(os.listdir(COVERART_DIR)) + print(f"Coverart files available: {len(coverart_files)}") + + # 2. Load games.json + with open(GAMES_JSON, "r", encoding="utf-8") as f: + games = json.load(f) + print(f"Games in JSON: {len(games)}") + + matched = [] + unmatched = [] + cleared = [] + + for game in games: + title = game.get("title", game.get("name", "")) + expected = title_to_filename(title) + current = game.get("cover_art_local", "") + + if expected in coverart_files: + game["cover_art_local"] = f"coverart/{expected}" + matched.append(title) + else: + # Clear any stale metadata/ paths; leave truly empty ones alone + if current.startswith("metadata/"): + game["cover_art_local"] = "" + cleared.append(title) + unmatched.append(title) + + # 3. Save updated games.json + with open(GAMES_JSON, "w", encoding="utf-8") as f: + json.dump(games, f, indent=2, ensure_ascii=False) + + # 4. Report + print(f"\nMatched : {len(matched)}") + print(f"Unmatched : {len(unmatched)}") + print(f"Cleared (metadata/ paths removed): {len(cleared)}") + + if unmatched: + print("\nUnmatched titles:") + for t in unmatched: + expected = title_to_filename(t) + print(f" Title : {t!r}") + print(f" Expected : {expected!r}") + +if __name__ == "__main__": + main() diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e6f4619 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + n64-tracker: + build: . + ports: + - "8585:5000" + volumes: + # Persistent game data (ownership state survives rebuilds) + - ./data:/app/data + # Local Coverart folder with cover art (read-only bind mount) + - ./Coverart:/app/coverart:ro + env_file: .env + restart: unless-stopped + diff --git a/fix_coverart_mapping.py b/fix_coverart_mapping.py new file mode 100644 index 0000000..1eb3a5a --- /dev/null +++ b/fix_coverart_mapping.py @@ -0,0 +1,187 @@ +import json +import os +import re +import unicodedata + +COVERART_DIR = "/Users/matt/Desktop/VideoGameList/Coverart" +GAMES_JSON = "/Users/matt/Desktop/VideoGameList/games.json" + +# --------------------------------------------------------------------------- +# Manual overrides: games.json title -> coverart stem (without -01.png) +# --------------------------------------------------------------------------- +MANUAL_OVERRIDES = { + "1080° Snowboarding": "1080 Snowboarding", + "Aero Fighters Assault": "AeroFighters Assault", + "All Star Tennis '99": "All Star Tennis 99", + "All-Star Baseball '99": "All-Star Baseball 99", + "Bass Hunter 64": "In-Fisherman Bass Hunter 64", + "Beetle Adventure Racing": "Beetle Adventure Racing!", + "Bomberman 64 1997": "Bomberman 64", + "Bust-A-Move 3 DX": "Bust-A-Move _99", + "ClayFighter 63\u2153": "Clay Fighter 63 1_3", + "ClayFighter: Sculptor's Cut": "Clay Fighter_ Sculptor_s Cut", + "Daffy Duck Starring as Duck Dodgers": "Looney Tunes_ Duck Dodgers_ Starring Daffy Duck", + "Daikatana": "John Romero_s Daikatana", + "Disney's Tarzan": "Tarzan", + "Donald Duck: Goin Quackers": "Donald Duck_ Goin_ Quackers", + "Duke Nukem Zero Hour": "Duke Nukem_ Zero Hour", + "Extreme-G 2": "Extreme-G_ XG2", + "FIFA '99": "FIFA 99", + "FIFA 64": "FIFA Soccer 64", + "FIFA: Road to World Cup '98": "FIFA_ Road to World Cup 98", + "G.A.S.P!! Fighters' NEXTream": "Deadly Arts", + "Holy Magic Century": "Quest 64", + "Lego Racers": "LEGO Racers", + "Madden NFL '99": "Madden NFL 99", + "Michael Owens WLS 2000": "Mia Hamm Soccer 64", + "Ms. Pac-Man: Maze Madness": "Ms. Pac-Man Maze Madness", + "Mystical Ninja Starring Goemon 2": "Goemon_s Great Adventure", + "NASCAR '99": "Nascar 99", + "NBA In The Zone '98": "NBA in the Zone _98", + "NBA In The Zone 2000": "NBA in the Zone 2000", + "NBA Jam '99": "NBA Jam 99", + "NBA Live '99": "NBA Live 99", + "NBA Pro '99": "NBA Hangtime", + "NFL Quarterback Club '98": "NFL Quarterback Club 98", + "NFL Quarterback Club '99": "NFL Quarterback Club 99", + "NFL Quarterback Club 2001": "NFL QB Club 2001", + "NHL '99": "NHL 99", + "NHL Breakaway '98": "NHL Breakaway 98", + "NHL Breakaway '99": "NHL Breakaway 99", + "NHL Pro '99": "NHL Blades of Steel _99", + "Olympic Hockey '98": "Olympic Hockey 98", + "Operation WinBack": "WinBack_ Covert Operations", + "Pokémon Puzzle League": "Pokemon Puzzle League", + "Pokémon Snap": "Pokemon Snap", + "Pokémon Stadium": "Pokemon Stadium", + "Pokémon Stadium 2": "Pokemon Stadium 2", + "Power Rangers Lightspeed Rescue": "Power Rangers_ Lightspeed Rescue", + "Quake 64": "Quake", + "Rainbow Six": "Tom Clancy_s Rainbow Six", + "Rampage World Tour": "Rampage_ World Tour", + "Ridge Racer 64": "RR64_ Ridge Racer 64", + "Rugrats: Treasure Hunt": "Rugrats_ Scavenger Hunt", + "Rush 2: Extreme Racing": "Rush 2_ Extreme Racing USA", + "San Francisco Rush": "San Francisco Rush_ Extreme Racing", + "Shadowgate 64: Trials of the Four Towers": "ShadowGate 64_ Trials of the Four Towers", + "Star Wars Episode I: Racer": "Star Wars Episode I_ Racer", + "Star Wars: Episode I Battle for Naboo": "Star Wars_ Episode I_ Battle for Naboo", + "Starcraft 64": "StarCraft 64", + "Supercross 2000": "SuperCross 2000", + "Superman 64": "Superman", + "The Powerpuff Girls: Chemical X-Traction": "The Powerpuff Girls_ Chemical X-traction", + "Tony Hawk's Skateboarding": "Tony Hawk_s Pro Skater", + "Toy Story 2: Buzz Lightyear to the Rescue":"Toy Story 2_ Buzz Lightyear to the Rescue!", + "Twisted Edge: Extreme Snowboarding": "Twisted Edge Extreme Snowboarding", + "V-Rally Edition '99": "V-Rally Edition 99", + "WCW vs. nWo: World Tour": "WCW Vs. nWo_ World Tour", + "WCW/nWo Revenge": "WCW_nWo Revenge", + "WipeOut 64": "Wipeout 64", + "World Cup '98": "World Cup 98", + "Xena: Warrior Princess": "Xena_ Warrior Princess_ The Talisman of Fate", +} + +# --------------------------------------------------------------------------- +# Normalisation helper +# --------------------------------------------------------------------------- +def normalize(s): + """Strip accents, remove degree/punctuation, lowercase, collapse spaces.""" + # Decompose unicode (é -> e + combining accent) then strip combining chars + s = unicodedata.normalize("NFD", s) + s = "".join(c for c in s if unicodedata.category(c) != "Mn") + # Remove degree symbol and vulgar fraction one-third + s = s.replace("°", "").replace("\u2153", "") + # Replace underscores (used in filenames instead of ' : etc.) + s = s.replace("_", " ") + # Remove punctuation / special chars; keep alphanumerics and spaces + s = re.sub(r"[^a-z0-9 ]", "", s.lower()) + # Collapse whitespace + s = re.sub(r"\s+", "", s) + return s + +# --------------------------------------------------------------------------- +# Build coverart lookup { stem -> filename_with_extension } +# --------------------------------------------------------------------------- +coverart_files = {} # stem (without -01.png) -> full filename +for fname in os.listdir(COVERART_DIR): + if fname.endswith("-01.png"): + stem = fname[:-len("-01.png")] + coverart_files[stem] = fname + +# Normalised lookup: normalized_stem -> stem +norm_to_stem = {normalize(stem): stem for stem in coverart_files} + +# --------------------------------------------------------------------------- +# Load games +# --------------------------------------------------------------------------- +with open(GAMES_JSON, "r", encoding="utf-8") as f: + games = json.load(f) + +unmatched_before = [g for g in games if not g.get("cover_art_local")] +print(f"Games without cover_art_local before fix: {len(unmatched_before)}") +print() + +matched = [] +unmatched = [] + +for game in games: + if game.get("cover_art_local"): + continue # already set, skip + + title = game.get("title", "") + + # --- 1. Manual override --- + if title in MANUAL_OVERRIDES: + stem = MANUAL_OVERRIDES[title] + if stem in coverart_files: + game["cover_art_local"] = f"Coverart/{coverart_files[stem]}" + matched.append((title, coverart_files[stem], "manual override")) + continue + else: + print(f" WARNING: override stem not found in Coverart: {stem!r}") + + # --- 2. Fuzzy / normalised match --- + norm_title = normalize(title) + if norm_title in norm_to_stem: + stem = norm_to_stem[norm_title] + game["cover_art_local"] = f"Coverart/{coverart_files[stem]}" + matched.append((title, coverart_files[stem], "fuzzy match")) + continue + + # --- 3. Try stripping trailing year (4 digits) --- + title_no_year = re.sub(r"\s+\d{4}$", "", title).strip() + norm_no_year = normalize(title_no_year) + if norm_no_year != norm_title and norm_no_year in norm_to_stem: + stem = norm_to_stem[norm_no_year] + game["cover_art_local"] = f"Coverart/{coverart_files[stem]}" + matched.append((title, coverart_files[stem], "fuzzy match (no year)")) + continue + + unmatched.append(title) + +# --------------------------------------------------------------------------- +# Report +# --------------------------------------------------------------------------- +print("=" * 70) +print(f"MATCHED ({len(matched)}):") +print("=" * 70) +for title, fname, method in matched: + print(f" [{method}]") + print(f" Game: {title!r}") + print(f" File: {fname!r}") + +print() +print("=" * 70) +print(f"STILL UNMATCHED ({len(unmatched)}):") +print("=" * 70) +for t in unmatched: + print(f" {t!r}") + +# --------------------------------------------------------------------------- +# Save updated games.json +# --------------------------------------------------------------------------- +with open(GAMES_JSON, "w", encoding="utf-8") as f: + json.dump(games, f, ensure_ascii=False, indent=2) + +print() +print(f"Saved updated games.json (matched {len(matched)}/{len(unmatched_before)} previously unset entries)") diff --git a/games.json b/games.json new file mode 100644 index 0000000..5ca4cd6 --- /dev/null +++ b/games.json @@ -0,0 +1,5626 @@ +[ + { + "id": 1, + "title": "007: The World Is Not Enough", + "publisher": "Electronic Arts", + "release_date": "October 2000", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "007-the-world-is-not-enough", + "cart_code": "NWI", + "cover_art_local": "coverart/007_ The World Is Not Enough-01.png", + "description": "", + "loose_price": 20.29, + "rarity_pct": 28, + "rarity_label": "Common" + }, + { + "id": 2, + "title": "1080° Snowboarding", + "publisher": "Nintendo", + "release_date": "April 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "1080-snowboarding", + "cart_code": "N8I", + "cover_art_local": "coverart/1080 Snowboarding-01.png", + "description": "", + "loose_price": 13.97, + "rarity_pct": 19, + "rarity_label": "Very Common" + }, + { + "id": 3, + "title": "A Bug's Life", + "publisher": "Activision", + "release_date": "May 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "a-bug-s-life", + "cart_code": "NBG", + "cover_art_local": "coverart/A Bug_s Life-01.png", + "description": "", + "loose_price": 13.85, + "rarity_pct": 28, + "rarity_label": "Common" + }, + { + "id": 4, + "title": "Aero Fighters Assault", + "publisher": "Video System", + "release_date": "November 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "aero-fighters-assault", + "cart_code": "NAF", + "cover_art_local": "coverart/AeroFighters Assault-01.png", + "description": "", + "loose_price": 17.74, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 5, + "title": "AeroGauge", + "publisher": "Ascii", + "release_date": "April 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "aerogauge", + "cart_code": "NAG", + "cover_art_local": "coverart/AeroGauge-01.png", + "description": "No more constraints... Blaze through the skies as you take control of your very own Aeromachines in this new futuristic racing game, AeroGauge. With courses that have sharp turns, and even sharper obstacles, it is going to take a keen eye and ultimate control to maneuver through courses featuring canyons, tunnels, oceans, and mountains. Imagine speeds reaching over 1000 mph as you whiz by the field in route to victory in these graphically advanced landscapes. Never has a game incorporated such remarkable control, detailed graphics and mind-tingling speeds as... Aero Gauge!", + "loose_price": 16.94, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 6, + "title": "Aidyn Chronicles: The First Mage", + "publisher": "THQ", + "release_date": "March 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "aidyn-chronicles-the-first-mage", + "cart_code": "NID", + "cover_art_local": "coverart/Aidyn Chronicles_ The First Mage-01.png", + "description": "", + "loose_price": 40.3, + "rarity_pct": 54, + "rarity_label": "Very Sought After" + }, + { + "id": 7, + "title": "All Star Tennis '99", + "publisher": "Ubi Soft", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "all-star-tennis-99", + "cart_code": "NAT", + "cover_art_local": "coverart/All Star Tennis 99-01.png", + "description": "", + "loose_price": 35.92, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 8, + "title": "All-Star Baseball '99", + "publisher": "Acclaim", + "release_date": "May 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "all-star-baseball-99", + "cart_code": "NAB", + "cover_art_local": "coverart/All-Star Baseball 99-01.png", + "description": "", + "loose_price": 4.74, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 9, + "title": "All-Star Baseball 2000", + "publisher": "Acclaim", + "release_date": "April 1999", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "all-star-baseball-2000", + "cart_code": "NA2", + "cover_art_local": "coverart/All-Star Baseball 2000-01.png", + "description": "", + "loose_price": 5.63, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 10, + "title": "All-Star Baseball 2001", + "publisher": "Acclaim", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "all-star-baseball-2001", + "cart_code": "NA3", + "cover_art_local": "coverart/All-Star Baseball 2001-01.png", + "description": "", + "loose_price": 11.15, + "rarity_pct": 37, + "rarity_label": "Uncommon" + }, + { + "id": 11, + "title": "Armorines: Project S.W.A.R.M.", + "publisher": "Acclaim", + "release_date": "November 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "armorines-project-s-w-a-r-m", + "cart_code": "NAR", + "cover_art_local": "coverart/Armorines_ Project S.W.A.R.M.-01.png", + "description": "Human Domination or Bug Infestation? The Choice is Yours! You're an Armorine. You're wearing the latest in futuristic battle-armor. Armed with a devastating arsenal, you've got 120 hours to stop an all-out bug invasion of Earth. Or die trying.", + "loose_price": 12.71, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 12, + "title": "Army Men: Air Combat", + "publisher": "3DO", + "release_date": "July 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "army-men-air-combat", + "cart_code": "NYA", + "cover_art_local": "coverart/Army Men_ Air Combat-01.png", + "description": "", + "loose_price": 25.0, + "rarity_pct": 49, + "rarity_label": "Sought After" + }, + { + "id": 13, + "title": "Army Men: Sarge's Heroes", + "publisher": "3DO", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "army-men-sarge-s-heroes", + "cart_code": "NYS", + "cover_art_local": "coverart/Army Men_ Sarge_s Heroes-01.png", + "description": "Baby Bowser has taken the Super Happy Tree and cast a spell on Yoshi's world, turning it into the pages of a picture book. The only Yoshis not affected by the spell were six hatchlings that were still protected by their shells. It's up to them to reclaim the Super Happy Tree and restore happiness to the world. That is the only thing that can break Baby Bowser's spell!", + "loose_price": 17.99, + "rarity_pct": 25, + "rarity_label": "Common" + }, + { + "id": 14, + "title": "Army Men: Sarge's Heroes 2", + "publisher": "3DO", + "release_date": "September 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "army-men-sarge-s-heroes-2", + "cart_code": "NYH", + "cover_art_local": "coverart/Army Men_ Sarge_s Heroes 2-01.png", + "description": "", + "loose_price": 26.63, + "rarity_pct": 12, + "rarity_label": "Very Common" + }, + { + "id": 15, + "title": "Asteroids Hyper 64", + "publisher": "Hyper Crave Entertainment", + "release_date": "December 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "asteroids-hyper-64", + "cart_code": "NAY", + "cover_art_local": "coverart/Asteroids Hyper 64-01.png", + "description": "Embark On An Epic Role-Playing Journey. Young Alaron is on a quest to discover the truth about himself, his name, and his heritage. Traveling to far and distant lands, pursued by forces he cannot understand, danger lurks around every corner. Alaron and his companions will seek to fulfil his destiny as the greatest mage ever known!", + "loose_price": 14.29, + "rarity_pct": 37, + "rarity_label": "Uncommon" + }, + { + "id": 16, + "title": "Automobili Lamborghini", + "publisher": "Titus", + "release_date": "November 1997", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "automobili-lamborghini", + "cart_code": "NAL", + "cover_art_local": "coverart/Automobili Lamborghini-01.png", + "description": "It's a Bumpin', Bruisin', Brawlin' Bash! The many worlds of Nintendo collide in the ultimate showdown of strength and skill! Up to 4 players can choose their favorite characters - complete which their signature attacks - and go at it in Team Battles and Free-For-Alls. Or venture out in your own to conquer the 14 stages in a single-player mode. Either way, Super Smash Bros. is a no-holds barred action-fest that will keep you coming back for more!", + "loose_price": 11.78, + "rarity_pct": 31, + "rarity_label": "Uncommon" + }, + { + "id": 17, + "title": "Banjo-Kazooie", + "publisher": "Nintendo", + "release_date": "June 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "banjo-kazooie", + "cart_code": "NBK", + "cover_art_local": "coverart/Banjo-Kazooie-01.png", + "description": "Trouble brews when Gruntilda the witch captures the unbearably beautiful cub, Tooty. But before the grisly hag can steal the bear's good looks, big brother Banjo and his fine-feathered friend, Kazooie, join forces to stop her. Combining their 24 moves and special powers. Banjo and Kazooie will fend off armiesof beasts. Bear and bird must hunt down the 100 puzzle pieces and 900 musical notes that will ultimately lead them to Gruntilda. However, miles of swamp. desert and snow and one bear of an adventure stand in their way.", + "loose_price": 33.95, + "rarity_pct": 15, + "rarity_label": "Very Common" + }, + { + "id": 18, + "title": "Banjo-Tooie", + "publisher": "Nintendo", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "banjo-tooie", + "cart_code": "NB2", + "cover_art_local": "coverart/Banjo-Tooie-01.png", + "description": "", + "loose_price": 31.71, + "rarity_pct": 52, + "rarity_label": "Very Sought After" + }, + { + "id": 19, + "title": "Bass Hunter 64", + "publisher": "Take 2 Interactive", + "release_date": "July 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bass-hunter-64", + "cart_code": "NBH", + "cover_art_local": "coverart/In-Fisherman Bass Hunter 64-01.png", + "description": "", + "loose_price": 13.48, + "rarity_pct": 38, + "rarity_label": "Uncommon" + }, + { + "id": 20, + "title": "Bassmasters 2000", + "publisher": "Take 2 Interactive", + "release_date": "December 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "bassmasters-2000", + "cart_code": "NBM", + "cover_art_local": "coverart/Bassmasters 2000-01.png", + "description": "", + "loose_price": 18.99, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 21, + "title": "Batman Beyond: Return of the Joker", + "publisher": "Kemco", + "release_date": "December 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "batman-beyond-return-of-the-joker", + "cart_code": "NBB", + "cover_art_local": "coverart/Batman Beyond_ Return of the Joker-01.png", + "description": "", + "loose_price": 40.0, + "rarity_pct": 62, + "rarity_label": "Highly Collectible" + }, + { + "id": 22, + "title": "BattleTanx", + "publisher": "3DO", + "release_date": "January 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "battletanx", + "cart_code": "", + "cover_art_local": "coverart/BattleTanx-01.png", + "description": "", + "loose_price": 22.51, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 23, + "title": "BattleTanx: Global Assault", + "publisher": "3DO", + "release_date": "January 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "battletanx-global-assault", + "cart_code": "NB3", + "cover_art_local": "coverart/BattleTanx_ Global Assault-01.png", + "description": "", + "loose_price": 30.5, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 24, + "title": "Battlezone: Rise of the Black Dogs", + "publisher": "Crave Entertainment", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "battlezone-rise-of-the-black-dogs", + "cart_code": "NBZ", + "cover_art_local": "coverart/Battlezone_ Rise of the Black Dogs-01.png", + "description": "", + "loose_price": 35.89, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 25, + "title": "Beetle Adventure Racing", + "publisher": "EA Sports", + "release_date": "March 1999", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "beetle-adventure-racing", + "cart_code": "NBR", + "cover_art_local": "coverart/Beetle Adventure Racing!-01.png", + "description": "", + "loose_price": 27.2, + "rarity_pct": 20, + "rarity_label": "Very Common" + }, + { + "id": 26, + "title": "Big Mountain 2000", + "publisher": "South Peak Interactive", + "release_date": "October 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "big-mountain-2000", + "cart_code": "", + "cover_art_local": "coverart/Big Mountain 2000-01.png", + "description": "", + "loose_price": 92.5, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 27, + "title": "Bio F.R.E.A.K.S.", + "publisher": "Midway", + "release_date": "May 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bio-f-r-e-a-k-s", + "cart_code": "NBF", + "cover_art_local": "coverart/Bio F.R.E.A.K.S.-01.png", + "description": "", + "loose_price": 13.0, + "rarity_pct": 28, + "rarity_label": "Common" + }, + { + "id": 28, + "title": "Blast Corps", + "publisher": "Nintendo", + "release_date": "March 1997", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "blast-corps", + "cart_code": "NBC", + "cover_art_local": "coverart/Blast Corps-01.png", + "description": "", + "loose_price": 21.32, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 29, + "title": "Blues Brothers 2000", + "publisher": "Titus", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "blues-brothers-2000", + "cart_code": "NLB", + "cover_art_local": "coverart/Blues Brothers 2000-01.png", + "description": "Tensions mount for Mario and pals as each delares himself to be the one true Super Star of Marioland. Face your friends and family in a contest of strength, wits and agility as you explore 6 thrilling Adventure Boards. Reveal new levelsof gaming excitement as you customize your boards with speed blocks. warp blocks and other speciality items. Jam-packed with all the electricity of an entire arcade, the action comes alive for up to 4 players. So grab your friends and get ready for a wild ride because this party never ends!", + "loose_price": 33.99, + "rarity_pct": 44, + "rarity_label": "Sought After" + }, + { + "id": 30, + "title": "Body Harvest", + "publisher": "Midway", + "release_date": "October 1998", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "body-harvest", + "cart_code": "NBO", + "cover_art_local": "coverart/Body Harvest-01.png", + "description": "", + "loose_price": 30.0, + "rarity_pct": 32, + "rarity_label": "Uncommon" + }, + { + "id": 31, + "title": "Bomberman 64 1997", + "publisher": "Nintendo", + "release_date": "December 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bomberman-64-1997", + "cart_code": "", + "cover_art_local": "coverart/Bomberman 64-01.png", + "description": "", + "loose_price": 27.76, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 32, + "title": "Bomberman 64: The Second Attack!", + "publisher": "Nintendo", + "release_date": "December 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bomberman-64-the-second-attack", + "cart_code": "", + "cover_art_local": "coverart/Bomberman 64_ The Second Attack!-01.png", + "description": "", + "loose_price": 290.28, + "rarity_pct": 92, + "rarity_label": "Ultra Rare" + }, + { + "id": 33, + "title": "Bomberman Hero", + "publisher": "Nintendo", + "release_date": "August 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "bomberman-hero", + "cart_code": "NBE", + "cover_art_local": "coverart/Bomberman Hero-01.png", + "description": "", + "loose_price": 24.99, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 34, + "title": "Bottom of the 9th", + "publisher": "Konami", + "release_date": "April 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bottom-of-the-9th", + "cart_code": "NML", + "cover_art_local": "coverart/Bottom of the 9th-01.png", + "description": "", + "loose_price": 12.99, + "rarity_pct": 22, + "rarity_label": "Common" + }, + { + "id": 35, + "title": "Brunswick Circuit Pro Bowling", + "publisher": "THQ", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "brunswick-circuit-pro-bowling", + "cart_code": "NBW", + "cover_art_local": "coverart/Brunswick Circuit Pro Bowling-01.png", + "description": "", + "loose_price": 20.49, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 36, + "title": "Buck Bumble", + "publisher": "Ubi Soft", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "buck-bumble", + "cart_code": "NBU", + "cover_art_local": "coverart/Buck Bumble-01.png", + "description": "", + "loose_price": 36.0, + "rarity_pct": 22, + "rarity_label": "Common" + }, + { + "id": 37, + "title": "Bust-A-Move 2: Arcade Edition", + "publisher": "Acclaim", + "release_date": "May 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bust-a-move-2-arcade-edition", + "cart_code": "NBV", + "cover_art_local": "coverart/Bust-A-Move 2_ Arcade Edition-01.png", + "description": "", + "loose_price": 21.22, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 38, + "title": "Bust-A-Move 3 DX", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "bust-a-move-3-dx", + "cart_code": "", + "cover_art_local": "coverart/Bust-A-Move _99-01.png", + "description": "", + "loose_price": 39.99, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 39, + "title": "California Speed", + "publisher": "Midway", + "release_date": "March 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "california-speed", + "cart_code": "NCS", + "cover_art_local": "coverart/California Speed-01.png", + "description": "", + "loose_price": 15.65, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 40, + "title": "Carmageddon 64", + "publisher": "Titus", + "release_date": "July 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "carmageddon-64", + "cart_code": "NCM", + "cover_art_local": "coverart/Carmageddon 64-01.png", + "description": "", + "loose_price": 104.06, + "rarity_pct": 50, + "rarity_label": "Sought After" + }, + { + "id": 41, + "title": "Castlevania", + "publisher": "Konami", + "release_date": "January 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "castlevania", + "cart_code": "NCV", + "cover_art_local": "coverart/Castlevania-01.png", + "description": "", + "loose_price": 30.78, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 42, + "title": "Castlevania: Legacy of Darkness", + "publisher": "Konami", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "castlevania-legacy-of-darkness", + "cart_code": "NCX", + "cover_art_local": "coverart/Castlevania_ Legacy of Darkness-01.png", + "description": "", + "loose_price": 150.17, + "rarity_pct": 63, + "rarity_label": "Highly Collectible" + }, + { + "id": 43, + "title": "Chameleon Twist", + "publisher": "Sunsoft", + "release_date": "December 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "chameleon-twist", + "cart_code": "NCT", + "cover_art_local": "coverart/Chameleon Twist-01.png", + "description": "", + "loose_price": 38.5, + "rarity_pct": 36, + "rarity_label": "Uncommon" + }, + { + "id": 44, + "title": "Chameleon Twist 2", + "publisher": "Sunsoft", + "release_date": "May 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "chameleon-twist-2", + "cart_code": "NC2", + "cover_art_local": "coverart/Chameleon Twist 2-01.png", + "description": "", + "loose_price": 71.0, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 45, + "title": "Charlie Blast's Territory", + "publisher": "Kemco", + "release_date": "April 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "charlie-blast-s-territory", + "cart_code": "NCL", + "cover_art_local": "coverart/Charlie Blast_s Territory-01.png", + "description": "", + "loose_price": 37.16, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 46, + "title": "Chopper Attack", + "publisher": "Midway", + "release_date": "June 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "chopper-attack", + "cart_code": "NCA", + "cover_art_local": "coverart/Chopper Attack-01.png", + "description": "", + "loose_price": 14.71, + "rarity_pct": 32, + "rarity_label": "Uncommon" + }, + { + "id": 47, + "title": "ClayFighter 63⅓", + "publisher": "Interplay", + "release_date": "October 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "clayfighter-63", + "cart_code": "", + "cover_art_local": "coverart/Clay Fighter 63 1_3-01.png", + "description": "", + "loose_price": 28.52, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 48, + "title": "ClayFighter: Sculptor's Cut", + "publisher": "Interplay", + "release_date": "May 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "clayfighter-sculptor-s-cut", + "cart_code": "", + "cover_art_local": "coverart/Clay Fighter_ Sculptor_s Cut-01.png", + "description": "", + "loose_price": 1011.3, + "rarity_pct": 82, + "rarity_label": "Super Rare" + }, + { + "id": 49, + "title": "Command & Conquer", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "command-conquer", + "cart_code": "NCC", + "cover_art_local": "coverart/Command & Conquer-01.png", + "description": "", + "loose_price": 17.48, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 50, + "title": "Conker's Bad Fur Day", + "publisher": "Nintendo", + "release_date": "March 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "conker-s-bad-fur-day", + "cart_code": "NFD", + "cover_art_local": "coverart/Conker_s Bad Fur Day-01.png", + "description": "", + "loose_price": 174.5, + "rarity_pct": 68, + "rarity_label": "Highly Collectible" + }, + { + "id": 51, + "title": "Cruis'n Exotica", + "publisher": "Nintendo", + "release_date": "October 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "cruis-n-exotica", + "cart_code": "NCY", + "cover_art_local": "coverart/Cruis_n Exotica-01.png", + "description": "", + "loose_price": 39.97, + "rarity_pct": 39, + "rarity_label": "Uncommon" + }, + { + "id": 52, + "title": "Cruis'n USA", + "publisher": "Nintendo", + "release_date": "December 1996", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "cruis-n-usa", + "cart_code": "NCU", + "cover_art_local": "coverart/Cruis_n USA-01.png", + "description": "", + "loose_price": 17.95, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 53, + "title": "Cruis'n World", + "publisher": "Nintendo", + "release_date": "September 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "cruis-n-world", + "cart_code": "NCW", + "cover_art_local": "coverart/Cruis_n World-01.png", + "description": "", + "loose_price": 22.76, + "rarity_pct": 33, + "rarity_label": "Uncommon" + }, + { + "id": 54, + "title": "CyberTiger", + "publisher": "EA Sports", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "cybertiger", + "cart_code": "NCK", + "cover_art_local": "coverart/CyberTiger-01.png", + "description": "", + "loose_price": 19.81, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 55, + "title": "Daffy Duck Starring as Duck Dodgers", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "daffy-duck-starring-as-duck-dodgers", + "cart_code": "", + "cover_art_local": "coverart/Looney Tunes_ Duck Dodgers_ Starring Daffy Duck-01.png", + "description": "", + "loose_price": 116.49, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 56, + "title": "Daikatana", + "publisher": "Kemco", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "daikatana", + "cart_code": "NDI", + "cover_art_local": "coverart/John Romero_s Daikatana-01.png", + "description": "", + "loose_price": 92.0, + "rarity_pct": 11, + "rarity_label": "Very Common" + }, + { + "id": 57, + "title": "Dark Rift", + "publisher": "Vic Tokai", + "release_date": "June 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "dark-rift", + "cart_code": "NDR", + "cover_art_local": "coverart/Dark Rift-01.png", + "description": "", + "loose_price": 10.98, + "rarity_pct": 19, + "rarity_label": "Very Common" + }, + { + "id": 58, + "title": "Destruction Derby 64", + "publisher": "THQ", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "destruction-derby-64", + "cart_code": "NDD", + "cover_art_local": "coverart/Destruction Derby 64-01.png", + "description": "", + "loose_price": 24.64, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 59, + "title": "Diddy Kong Racing", + "publisher": "Nintendo", + "release_date": "November 1997", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "diddy-kong-racing", + "cart_code": "NDY", + "cover_art_local": "coverart/Diddy Kong Racing-01.png", + "description": "Timber the Tiger's parents picked a fine time to go on vacation. When they come back, they're going to be faced with an island trashed by the spiteful space bully Wizpig - unless the local animals can do something about it! So join Diddy Kong as he teams up with Timber the Tiger, Pipsy the Mouse and Taj the Genie in an epic racing adventure unlike anything you've ever experienced before!", + "loose_price": 29.41, + "rarity_pct": 12, + "rarity_label": "Very Common" + }, + { + "id": 60, + "title": "Disney's Tarzan", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "disney-s-tarzan", + "cart_code": "", + "cover_art_local": "coverart/Tarzan-01.png", + "description": "", + "loose_price": 19.74, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 61, + "title": "Donald Duck: Goin Quackers", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "donald-duck-goin-quackers", + "cart_code": "NDQ", + "cover_art_local": "coverart/Donald Duck_ Goin_ Quackers-01.png", + "description": "", + "loose_price": 70.0, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 62, + "title": "Donkey Kong 64", + "publisher": "Nintendo", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "donkey-kong-64", + "cart_code": "NKJ", + "cover_art_local": "coverart/Donkey Kong 64-01.png", + "description": "", + "loose_price": 34.44, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 63, + "title": "Doom 64", + "publisher": "Midway", + "release_date": "April 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "doom-64", + "cart_code": "ND6", + "cover_art_local": "coverart/Doom 64-01.png", + "description": "", + "loose_price": 38.53, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 64, + "title": "Dr. Mario 64", + "publisher": "Nintendo", + "release_date": "April 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "dr-mario-64", + "cart_code": "NDM", + "cover_art_local": "coverart/Dr. Mario 64-01.png", + "description": "You Killed The Demons Once, They Were All Dead. Or So You Thought... A single Demon Entity escaped detection. Systematically it altered decaying, dead carnage back into grotesque living tissue. The Demons have returned - stronger and more vicious than ever before. Your mission is clear, there are no options: KILL OR BE KILLED!", + "loose_price": 30.0, + "rarity_pct": 63, + "rarity_label": "Highly Collectible" + }, + { + "id": 65, + "title": "Dual Heroes", + "publisher": "Electro Brain", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "dual-heroes", + "cart_code": "NDH", + "cover_art_local": "coverart/Dual Heroes-01.png", + "description": "", + "loose_price": 18.48, + "rarity_pct": 32, + "rarity_label": "Uncommon" + }, + { + "id": 66, + "title": "Duke Nukem 64", + "publisher": "GT Interactive", + "release_date": "November 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "duke-nukem-64", + "cart_code": "NDU", + "cover_art_local": "coverart/Duke Nukem 64-01.png", + "description": "", + "loose_price": 33.78, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 67, + "title": "Duke Nukem Zero Hour", + "publisher": "GT Interactive", + "release_date": "August 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "duke-nukem-zero-hour", + "cart_code": "", + "cover_art_local": "coverart/Duke Nukem_ Zero Hour-01.png", + "description": "", + "loose_price": 24.21, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 68, + "title": "Earthworm Jim 3D", + "publisher": "Interplay", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "earthworm-jim-3d", + "cart_code": "NEJ", + "cover_art_local": "coverart/Earthworm Jim 3D-01.png", + "description": "", + "loose_price": 64.99, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 69, + "title": "ECW Hardcore Revolution", + "publisher": "Acclaim", + "release_date": "February 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "ecw-hardcore-revolution", + "cart_code": "NEH", + "cover_art_local": "coverart/ECW Hardcore Revolution-01.png", + "description": "", + "loose_price": 13.99, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 70, + "title": "Excitebike 64", + "publisher": "Nintendo", + "release_date": "May 2000", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "excitebike-64", + "cart_code": "NEB", + "cover_art_local": "coverart/Excitebike 64-01.png", + "description": "", + "loose_price": 15.52, + "rarity_pct": 41, + "rarity_label": "Sought After" + }, + { + "id": 71, + "title": "Extreme-G", + "publisher": "Acclaim", + "release_date": "October 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "extreme-g", + "cart_code": "", + "cover_art_local": "coverart/Extreme-G-01.png", + "description": "", + "loose_price": 10.75, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 72, + "title": "Extreme-G 2", + "publisher": "Acclaim", + "release_date": "October 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "extreme-g-2", + "cart_code": "", + "cover_art_local": "coverart/Extreme-G_ XG2-01.png", + "description": "", + "loose_price": 12.29, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 73, + "title": "F-1 World Grand Prix", + "publisher": "Nintendo", + "release_date": "July 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "f-1-world-grand-prix", + "cart_code": "NFW", + "cover_art_local": "coverart/F-1 World Grand Prix-01.png", + "description": "", + "loose_price": 9.6, + "rarity_pct": 25, + "rarity_label": "Common" + }, + { + "id": 74, + "title": "F-Zero X", + "publisher": "Nintendo", + "release_date": "October 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "f-zero-x", + "cart_code": "NFZ", + "cover_art_local": "coverart/F-Zero X-01.png", + "description": "", + "loose_price": 39.5, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 75, + "title": "F1 Pole Position 64", + "publisher": "Ubi Soft", + "release_date": "October 1997", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "f1-pole-position-64", + "cart_code": "NFP", + "cover_art_local": "coverart/F1 Pole Position 64-01.png", + "description": "", + "loose_price": 11.27, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 76, + "title": "FIFA '99", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "fifa-99", + "cart_code": "", + "cover_art_local": "coverart/FIFA 99-01.png", + "description": "", + "loose_price": 18.49, + "rarity_pct": 27, + "rarity_label": "Common" + }, + { + "id": 77, + "title": "FIFA 64", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "fifa-64", + "cart_code": "NFS", + "cover_art_local": "coverart/FIFA Soccer 64-01.png", + "description": "", + "loose_price": 11.28, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 78, + "title": "FIFA: Road to World Cup '98", + "publisher": "EA Sports", + "release_date": "December 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "fifa-road-to-world-cup-98", + "cart_code": "", + "cover_art_local": "coverart/FIFA_ Road to World Cup 98-01.png", + "description": "", + "loose_price": 17.74, + "rarity_pct": 17, + "rarity_label": "Very Common" + }, + { + "id": 79, + "title": "Fighter Destiny 2", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "fighter-destiny-2", + "cart_code": "", + "cover_art_local": "coverart/Fighter Destiny 2-01.png", + "description": "", + "loose_price": 42.25, + "rarity_pct": 31, + "rarity_label": "Uncommon" + }, + { + "id": 80, + "title": "Fighters Destiny", + "publisher": "Ocean", + "release_date": "January 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "fighters-destiny", + "cart_code": "", + "cover_art_local": "coverart/Fighters Destiny-01.png", + "description": "", + "loose_price": 16.49, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 81, + "title": "Fighting Force 64", + "publisher": "Eidos Interactive", + "release_date": "May 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "fighting-force-64", + "cart_code": "NFF", + "cover_art_local": "coverart/Fighting Force 64-01.png", + "description": "", + "loose_price": 43.25, + "rarity_pct": 38, + "rarity_label": "Uncommon" + }, + { + "id": 82, + "title": "Flying Dragon", + "publisher": "Natsume", + "release_date": "October 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "flying-dragon", + "cart_code": "NFL", + "cover_art_local": "coverart/Flying Dragon-01.png", + "description": "", + "loose_price": 27.99, + "rarity_pct": 31, + "rarity_label": "Uncommon" + }, + { + "id": 83, + "title": "Forsaken 64", + "publisher": "Acclaim", + "release_date": "May 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "forsaken-64", + "cart_code": "NFO", + "cover_art_local": "coverart/Forsaken 64-01.png", + "description": "", + "loose_price": 12.36, + "rarity_pct": 10, + "rarity_label": "Extremely Common" + }, + { + "id": 84, + "title": "Fox Sports College Hoops '99", + "publisher": "Fox Interactive", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "fox-sports-college-hoops-99", + "cart_code": "NFH", + "cover_art_local": "coverart/Fox Sports College Hoops _99-01.png", + "description": "", + "loose_price": 6.0, + "rarity_pct": 17, + "rarity_label": "Very Common" + }, + { + "id": 85, + "title": "G.A.S.P!! Fighters' NEXTream", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "g-a-s-p-fighters-nextream", + "cart_code": "", + "cover_art_local": "coverart/Deadly Arts-01.png", + "description": "", + "loose_price": null, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 86, + "title": "Gauntlet Legends", + "publisher": "Midway", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "gauntlet-legends", + "cart_code": "NGL", + "cover_art_local": "coverart/Gauntlet Legends-01.png", + "description": "", + "loose_price": 69.99, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 87, + "title": "Gex 3: Deep Cover Gecko", + "publisher": "Eidos Interactive", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "gex-3-deep-cover-gecko", + "cart_code": "NGX", + "cover_art_local": "coverart/Gex 3_ Deep Cover Gecko-01.png", + "description": "", + "loose_price": 18.14, + "rarity_pct": 37, + "rarity_label": "Uncommon" + }, + { + "id": 88, + "title": "Gex 64: Enter the Gecko", + "publisher": "Midway", + "release_date": "August 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "gex-64-enter-the-gecko", + "cart_code": "", + "cover_art_local": "coverart/Gex 64_ Enter the Gecko-01.png", + "description": "", + "loose_price": 19.72, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 89, + "title": "Glover", + "publisher": "Hasbro Interactive", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "glover", + "cart_code": "NGV", + "cover_art_local": "coverart/Glover-01.png", + "description": "", + "loose_price": 14.48, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 90, + "title": "Golden Nugget 64", + "publisher": "Virgin Interactive", + "release_date": "December 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "golden-nugget-64", + "cart_code": "", + "cover_art_local": "coverart/Golden Nugget 64-01.png", + "description": "", + "loose_price": 18.49, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 91, + "title": "GoldenEye 007", + "publisher": "Nintendo", + "release_date": "August 1997", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "goldeneye-007", + "cart_code": "NRG", + "cover_art_local": "coverart/GoldenEye 007-01.png", + "description": "", + "loose_price": 31.45, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 92, + "title": "GT 64: Championship Edition", + "publisher": "Ocean", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "gt-64-championship-edition", + "cart_code": "NGT", + "cover_art_local": "coverart/GT 64_ Championship Edition-01.png", + "description": "", + "loose_price": 12.39, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 93, + "title": "Harvest Moon 64", + "publisher": "Natsume", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "harvest-moon-64", + "cart_code": "NMN", + "cover_art_local": "coverart/Harvest Moon 64-01.png", + "description": "", + "loose_price": 63.58, + "rarity_pct": 81, + "rarity_label": "Super Rare" + }, + { + "id": 94, + "title": "Hercules: The Legendary Journeys", + "publisher": "Titus", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "hercules-the-legendary-journeys", + "cart_code": "NHE", + "cover_art_local": "coverart/Hercules_ The Legendary Journeys-01.png", + "description": "", + "loose_price": 37.67, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 95, + "title": "Hexen", + "publisher": "GT Interactive", + "release_date": "June 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "hexen", + "cart_code": "NHX", + "cover_art_local": "coverart/Hexen-01.png", + "description": "", + "loose_price": 22.06, + "rarity_pct": 14, + "rarity_label": "Very Common" + }, + { + "id": 96, + "title": "Hey You, Pikachu!", + "publisher": "Nintendo", + "release_date": "November 2000", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "5.0", + "slug": "hey-you-pikachu", + "cart_code": "NHP", + "cover_art_local": "coverart/Hey You, Pikachu!-01.png", + "description": "", + "loose_price": 10.24, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 97, + "title": "Holy Magic Century", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "holy-magic-century", + "cart_code": "", + "cover_art_local": "coverart/Quest 64-01.png", + "description": "", + "loose_price": null, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 98, + "title": "Hot Wheels Turbo Racing", + "publisher": "EA Sports", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "hot-wheels-turbo-racing", + "cart_code": "NHW", + "cover_art_local": "coverart/Hot Wheels Turbo Racing-01.png", + "description": "", + "loose_price": 18.67, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 99, + "title": "Hybrid Heaven", + "publisher": "Konami", + "release_date": "August 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "hybrid-heaven", + "cart_code": "NHB", + "cover_art_local": "coverart/Hybrid Heaven-01.png", + "description": "", + "loose_price": 28.99, + "rarity_pct": 21, + "rarity_label": "Common" + }, + { + "id": 100, + "title": "Hydro Thunder", + "publisher": "Midway", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "hydro-thunder", + "cart_code": "NHT", + "cover_art_local": "coverart/Hydro Thunder-01.png", + "description": "", + "loose_price": 62.0, + "rarity_pct": 55, + "rarity_label": "Very Sought After" + }, + { + "id": 101, + "title": "Iggy's Reckin' Balls", + "publisher": "Acclaim", + "release_date": "August 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "iggy-s-reckin-balls", + "cart_code": "NIR", + "cover_art_local": "coverart/Iggy_s Reckin_ Balls-01.png", + "description": "", + "loose_price": 21.44, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 102, + "title": "Indiana Jones and the Infernal Machine", + "publisher": "Lucas Arts", + "release_date": "December 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "indiana-jones-and-the-infernal-machine", + "cart_code": "NIJ", + "cover_art_local": "coverart/Indiana Jones and the Infernal Machine-01.png", + "description": "1947. The Nazis have been crushed, the Cold War has begun and Soviet agents are sniffing around an ancient ruin. Grab your whip and fedora and join Indy in a globe-spanning race to unearth the mysterious \"Infernal Machine\".", + "loose_price": 109.97, + "rarity_pct": 68, + "rarity_label": "Highly Collectible" + }, + { + "id": 103, + "title": "Indy Racing 2000", + "publisher": "Infogrames", + "release_date": "June 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "indy-racing-2000", + "cart_code": "NIN", + "cover_art_local": "coverart/Indy Racing 2000-01.png", + "description": "", + "loose_price": 18.99, + "rarity_pct": 37, + "rarity_label": "Uncommon" + }, + { + "id": 104, + "title": "International Superstar Soccer '98", + "publisher": "Konami", + "release_date": "August 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "international-superstar-soccer-98", + "cart_code": "NIT", + "cover_art_local": "coverart/International Superstar Soccer _98-01.png", + "description": "", + "loose_price": 45.0, + "rarity_pct": 61, + "rarity_label": "Highly Collectible" + }, + { + "id": 105, + "title": "International Superstar Soccer 2000", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "international-superstar-soccer-2000", + "cart_code": "", + "cover_art_local": "coverart/International Superstar Soccer 2000-01.png", + "description": "", + "loose_price": 80.99, + "rarity_pct": 70, + "rarity_label": "Highly Collectible" + }, + { + "id": 106, + "title": "International Superstar Soccer 64", + "publisher": "Konami", + "release_date": "July 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "international-superstar-soccer-64", + "cart_code": "NIS", + "cover_art_local": "coverart/International Superstar Soccer 64-01.png", + "description": "", + "loose_price": 19.01, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 107, + "title": "International Track & Field 2000", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "international-track-field-2000", + "cart_code": "", + "cover_art_local": "coverart/International Track & Field 2000-01.png", + "description": "", + "loose_price": 21.98, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 108, + "title": "Jeopardy!", + "publisher": "Gametek", + "release_date": "March 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "jeopardy", + "cart_code": "NJP", + "cover_art_local": "coverart/Jeopardy!-01.png", + "description": "", + "loose_price": 16.47, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 109, + "title": "Jeremy McGrath Supercross 2000", + "publisher": "Acclaim", + "release_date": "February 2000", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "jeremy-mcgrath-supercross-2000", + "cart_code": "NJM", + "cover_art_local": "coverart/Jeremy McGrath Supercross 2000-01.png", + "description": "", + "loose_price": 10.09, + "rarity_pct": 19, + "rarity_label": "Very Common" + }, + { + "id": 110, + "title": "Jet Force Gemini", + "publisher": "Nintendo", + "release_date": "October 1999", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "jet-force-gemini", + "cart_code": "NJF", + "cover_art_local": "coverart/Jet Force Gemini-01.png", + "description": "", + "loose_price": 17.24, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 111, + "title": "Ken Griffey Jr.'s Slugfest", + "publisher": "Nintendo", + "release_date": "May 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "ken-griffey-jr-s-slugfest", + "cart_code": "NKG", + "cover_art_local": "coverart/Ken Griffey Jr._s Slugfest-01.png", + "description": "", + "loose_price": 11.19, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 112, + "title": "Killer Instinct Gold", + "publisher": "Nintendo", + "release_date": "November 1996", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "killer-instinct-gold", + "cart_code": "NKI", + "cover_art_local": "coverart/Killer Instinct Gold-01.png", + "description": "", + "loose_price": 27.03, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 113, + "title": "Kirby 64: The Crystal Shards", + "publisher": "Nintendo", + "release_date": "June 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "kirby-64-the-crystal-shards", + "cart_code": "NK4", + "cover_art_local": "coverart/Kirby 64_ The Crystal Shards-01.png", + "description": "", + "loose_price": 46.54, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 114, + "title": "Knife Edge: Nose Gunner", + "publisher": "Kemco", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "knife-edge-nose-gunner", + "cart_code": "NKN", + "cover_art_local": "coverart/Knife Edge_ Nose Gunner-01.png", + "description": "", + "loose_price": 14.02, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 115, + "title": "Knockout Kings 2000", + "publisher": "EA Sports", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "knockout-kings-2000", + "cart_code": "NKK", + "cover_art_local": "coverart/Knockout Kings 2000-01.png", + "description": "", + "loose_price": 8.94, + "rarity_pct": 8, + "rarity_label": "Extremely Common" + }, + { + "id": 116, + "title": "Kobe Bryant in NBA Courtside", + "publisher": "Nintendo", + "release_date": "April 1998", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "kobe-bryant-in-nba-courtside", + "cart_code": "NKO", + "cover_art_local": "coverart/Kobe Bryant in NBA Courtside-01.png", + "description": "", + "loose_price": 8.26, + "rarity_pct": 4, + "rarity_label": "Extremely Common" + }, + { + "id": 117, + "title": "Lego Racers", + "publisher": "LEGO Media", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "lego-racers", + "cart_code": "", + "cover_art_local": "coverart/LEGO Racers-01.png", + "description": "", + "loose_price": 15.09, + "rarity_pct": 29, + "rarity_label": "Common" + }, + { + "id": 118, + "title": "Lode Runner 3-D", + "publisher": "Infogrames", + "release_date": "March 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "lode-runner-3-d", + "cart_code": "NLO", + "cover_art_local": "coverart/Lode Runner 3-D-01.png", + "description": "", + "loose_price": 14.99, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 119, + "title": "Mace: The Dark Age", + "publisher": "Midway", + "release_date": "October 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mace-the-dark-age", + "cart_code": "NMA", + "cover_art_local": "coverart/Mace_ The Dark Age-01.png", + "description": "", + "loose_price": 23.5, + "rarity_pct": 37, + "rarity_label": "Uncommon" + }, + { + "id": 120, + "title": "Madden Football 64", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "madden-football-64", + "cart_code": "NMF", + "cover_art_local": "coverart/Madden Football 64-01.png", + "description": "", + "loose_price": 6.54, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 121, + "title": "Madden NFL '99", + "publisher": "EA Sports", + "release_date": "September 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "madden-nfl-99", + "cart_code": "NMG", + "cover_art_local": "coverart/Madden NFL 99-01.png", + "description": "", + "loose_price": 5.0, + "rarity_pct": 8, + "rarity_label": "Extremely Common" + }, + { + "id": 122, + "title": "Madden NFL 2000", + "publisher": "EA Sports", + "release_date": "August 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "madden-nfl-2000", + "cart_code": "NM0", + "cover_art_local": "coverart/Madden NFL 2000-01.png", + "description": "", + "loose_price": 4.99, + "rarity_pct": 9, + "rarity_label": "Extremely Common" + }, + { + "id": 123, + "title": "Madden NFL 2001", + "publisher": "EA Sports", + "release_date": "September 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "madden-nfl-2001", + "cart_code": "NM1", + "cover_art_local": "coverart/Madden NFL 2001-01.png", + "description": "", + "loose_price": 7.69, + "rarity_pct": 13, + "rarity_label": "Very Common" + }, + { + "id": 124, + "title": "Madden NFL 2002", + "publisher": "EA Sports", + "release_date": "September 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "madden-nfl-2002", + "cart_code": "NM2", + "cover_art_local": "coverart/Madden NFL 2002-01.png", + "description": "", + "loose_price": 9.0, + "rarity_pct": 27, + "rarity_label": "Common" + }, + { + "id": 125, + "title": "Magical Tetris Challenge", + "publisher": "Capcom", + "release_date": "January 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "magical-tetris-challenge", + "cart_code": "NMT", + "cover_art_local": "coverart/Magical Tetris Challenge-01.png", + "description": "", + "loose_price": 27.33, + "rarity_pct": 55, + "rarity_label": "Very Sought After" + }, + { + "id": 126, + "title": "Major League Baseball Featuring Ken Griffey, Jr.", + "publisher": "Nintendo", + "release_date": "May 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "major-league-baseball-featuring-ken-griffey-jr", + "cart_code": "", + "cover_art_local": "coverart/Major League Baseball Featuring Ken Griffey, Jr.-01.png", + "description": "", + "loose_price": 9.99, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 127, + "title": "Mario Golf", + "publisher": "Nintendo", + "release_date": "July 1999", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "mario-golf", + "cart_code": "NMO", + "cover_art_local": "coverart/Mario Golf-01.png", + "description": "", + "loose_price": 36.84, + "rarity_pct": 53, + "rarity_label": "Very Sought After" + }, + { + "id": 128, + "title": "Mario Kart 64", + "publisher": "Nintendo", + "release_date": "February 1997", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mario-kart-64", + "cart_code": "NKT", + "cover_art_local": "coverart/Mario Kart 64-01.png", + "description": "Three... Two... One... GO! The signal light changes and you drop the pedal to the metal. Take on up to three friends in the split-screen VS games, or race solo in the Mario GP. Tell your friends to bring it on in the highly competitive Battle mode. Advanced features allow you to race with your \"Ghost\". The driving data from your best run appears as a transparent character on the screen. No longer must you simply race against the clock -- you can actually race against yourself!", + "loose_price": 48.7, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 129, + "title": "Mario Party", + "publisher": "Nintendo", + "release_date": "February 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mario-party", + "cart_code": "NM4", + "cover_art_local": "coverart/Mario Party-01.png", + "description": "", + "loose_price": 39.94, + "rarity_pct": 59, + "rarity_label": "Very Sought After" + }, + { + "id": 130, + "title": "Mario Party 2", + "publisher": "Nintendo", + "release_date": "January 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mario-party-2", + "cart_code": "NM5", + "cover_art_local": "coverart/Mario Party 2-01.png", + "description": "", + "loose_price": 47.81, + "rarity_pct": 58, + "rarity_label": "Very Sought After" + }, + { + "id": 131, + "title": "Mario Party 3", + "publisher": "Nintendo", + "release_date": "May 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mario-party-3", + "cart_code": "NM6", + "cover_art_local": "coverart/Mario Party 3-01.png", + "description": "", + "loose_price": 60.32, + "rarity_pct": 60, + "rarity_label": "Very Sought After" + }, + { + "id": 132, + "title": "Mario Tennis", + "publisher": "Nintendo", + "release_date": "August 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mario-tennis", + "cart_code": "NMR", + "cover_art_local": "coverart/Mario Tennis-01.png", + "description": "", + "loose_price": 26.1, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 133, + "title": "Mega Man 64", + "publisher": "Capcom", + "release_date": "February 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mega-man-64", + "cart_code": "NMM", + "cover_art_local": "coverart/Mega Man 64-01.png", + "description": "", + "loose_price": 78.14, + "rarity_pct": 62, + "rarity_label": "Highly Collectible" + }, + { + "id": 134, + "title": "Michael Owens WLS 2000", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "michael-owens-wls-2000", + "cart_code": "", + "cover_art_local": "coverart/Mia Hamm Soccer 64-01.png", + "description": "", + "loose_price": null, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 135, + "title": "Mickey's Speedway USA", + "publisher": "Nintendo", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mickey-s-speedway-usa", + "cart_code": "NMV", + "cover_art_local": "coverart/Mickey_s Speedway USA-01.png", + "description": "Party all night long! Mario and friends are throwing a party, and you're invited. It's their biggest bash yet, with seventy totally new Mini-Games and five brand, new adventure boards. You'll be the life of the party as you punch, pound and stampede right over your opponents in a multiplayer melee or go head-to-head in the new two-player duel mode. You can even unlock new characters in the one-player challenge. With so much fun and excitement, this is a bash you'll just have to crash!", + "loose_price": 19.98, + "rarity_pct": 29, + "rarity_label": "Common" + }, + { + "id": 136, + "title": "Micro Machines 64 Turbo", + "publisher": "Midway", + "release_date": "March 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "micro-machines-64-turbo", + "cart_code": "NMX", + "cover_art_local": "coverart/Micro Machines 64 Turbo-01.png", + "description": "", + "loose_price": 17.76, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 137, + "title": "Midway's Greatest Arcade Hits: Volume 1", + "publisher": "Midway", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "midway-s-greatest-arcade-hits-volume-1", + "cart_code": "", + "cover_art_local": "coverart/Midway_s Greatest Arcade Hits_ Volume 1-01.png", + "description": "", + "loose_price": 13.68, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 138, + "title": "Mike Piazza's Strike Zone", + "publisher": "GT Interactive", + "release_date": "June 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mike-piazza-s-strike-zone", + "cart_code": "", + "cover_art_local": "coverart/Mike Piazza_s Strike Zone-01.png", + "description": "", + "loose_price": 10.7, + "rarity_pct": 17, + "rarity_label": "Very Common" + }, + { + "id": 139, + "title": "Milo's Astro Lanes", + "publisher": "Crave Entertainment", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "milo-s-astro-lanes", + "cart_code": "NML", + "cover_art_local": "coverart/Milo_s Astro Lanes-01.png", + "description": "", + "loose_price": 19.99, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 140, + "title": "Mischief Makers", + "publisher": "Nintendo", + "release_date": "September 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mischief-makers", + "cart_code": "NMI", + "cover_art_local": "coverart/Mischief Makers-01.png", + "description": "", + "loose_price": 61.5, + "rarity_pct": 38, + "rarity_label": "Uncommon" + }, + { + "id": 141, + "title": "Mission: Impossible", + "publisher": "Ocean", + "release_date": "July 1998", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "mission-impossible", + "cart_code": "NMP", + "cover_art_local": "coverart/Mission_ Impossible-01.png", + "description": "", + "loose_price": 9.93, + "rarity_pct": 44, + "rarity_label": "Sought After" + }, + { + "id": 142, + "title": "Monaco Grand Prix", + "publisher": "Ubi Soft", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "monaco-grand-prix", + "cart_code": "NMQ", + "cover_art_local": "coverart/Monaco Grand Prix-01.png", + "description": "Mario Pals Around in an All-New Action Adventure! Mario's back in his first adventure since Super Mario 64, and this time, Bowser's bent on preventing a storybook ending. When Princess Peach is kidnapped, Mario plots to rescue the seven Star Spirits and rid the Mushroom Kingdom of Koopa's cruel cohorts. As he travelsfrom the tropical jungles of Lavalava Island to the frosty heights of Shiver Mountain, he'll meet up with seven all-new companions... and he'll need help from each one or there'll be no happily ever after.", + "loose_price": 34.53, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 143, + "title": "Monopoly", + "publisher": "Hasbro Interactive", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "monopoly", + "cart_code": "NMY", + "cover_art_local": "coverart/Monopoly-01.png", + "description": "", + "loose_price": 14.49, + "rarity_pct": 62, + "rarity_label": "Highly Collectible" + }, + { + "id": 144, + "title": "Monster Truck Madness 64", + "publisher": "Take 2 Interactive", + "release_date": "July 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "monster-truck-madness-64", + "cart_code": "NMK", + "cover_art_local": "coverart/Monster Truck Madness 64-01.png", + "description": "", + "loose_price": 14.69, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 145, + "title": "Mortal Kombat 4", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mortal-kombat-4", + "cart_code": "NMK", + "cover_art_local": "coverart/Mortal Kombat 4-01.png", + "description": "", + "loose_price": 24.59, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 146, + "title": "Mortal Kombat Mythologies: Sub-Zero", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mortal-kombat-mythologies-sub-zero", + "cart_code": "NMJ", + "cover_art_local": "coverart/Mortal Kombat Mythologies_ Sub-Zero-01.png", + "description": "", + "loose_price": 21.95, + "rarity_pct": 57, + "rarity_label": "Very Sought After" + }, + { + "id": 147, + "title": "Mortal Kombat Trilogy", + "publisher": "Midway", + "release_date": "November 1996", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mortal-kombat-trilogy", + "cart_code": "NMW", + "cover_art_local": "coverart/Mortal Kombat Trilogy-01.png", + "description": "The best party game ever just got better! Mario and the gang are back for another round of Bowser-bashin' party action! Watch as your favorite Nintendo characters don different duds for each of the five all-new Adventure Boards! A slew of new tricks and devices bring new levels of challenge and excitement to board game play. New board maps, new Mini-Games, new action and new surprises means a whole new batch of fun! Get ready to unleash your best Hip Drops, hammer swings and high-flying high jinks for another round of frenzied multi-player action!", + "loose_price": 28.14, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 148, + "title": "MRC: Multi-Racing Championship", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mrc-multi-racing-championship", + "cart_code": "", + "cover_art_local": "coverart/MRC_ Multi-Racing Championship-01.png", + "description": "", + "loose_price": 9.84, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 149, + "title": "Ms. Pac-Man: Maze Madness", + "publisher": "Namco", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "ms-pac-man-maze-madness", + "cart_code": "NQM", + "cover_art_local": "coverart/Ms. Pac-Man Maze Madness-01.png", + "description": "", + "loose_price": 16.14, + "rarity_pct": 52, + "rarity_label": "Very Sought After" + }, + { + "id": 150, + "title": "Mystical Ninja Starring Goemon", + "publisher": "Konami", + "release_date": "April 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mystical-ninja-starring-goemon", + "cart_code": "NGM", + "cover_art_local": "coverart/Mystical Ninja Starring Goemon-01.png", + "description": "", + "loose_price": 126.31, + "rarity_pct": 55, + "rarity_label": "Very Sought After" + }, + { + "id": 151, + "title": "Mystical Ninja Starring Goemon 2", + "publisher": "Konami", + "release_date": "April 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "mystical-ninja-starring-goemon-2", + "cart_code": "", + "cover_art_local": "coverart/Goemon_s Great Adventure-01.png", + "description": "", + "loose_price": 149.36, + "rarity_pct": 55, + "rarity_label": "Very Sought After" + }, + { + "id": 152, + "title": "Nagano Winter Olympics '98", + "publisher": "Konami", + "release_date": "January 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "nagano-winter-olympics-98", + "cart_code": "NNO", + "cover_art_local": "coverart/Nagano Winter Olympics _98-01.png", + "description": "", + "loose_price": 8.99, + "rarity_pct": 36, + "rarity_label": "Uncommon" + }, + { + "id": 153, + "title": "Namco Museum 64", + "publisher": "Namco", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "namco-museum-64", + "cart_code": "NNA", + "cover_art_local": "coverart/Namco Museum 64-01.png", + "description": "", + "loose_price": 13.45, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 154, + "title": "NASCAR '99", + "publisher": "EA Sports", + "release_date": "September 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nascar-99", + "cart_code": "NN9", + "cover_art_local": "coverart/Nascar 99-01.png", + "description": "", + "loose_price": 8.16, + "rarity_pct": 36, + "rarity_label": "Uncommon" + }, + { + "id": 155, + "title": "NASCAR 2000", + "publisher": "EA Sports", + "release_date": "September 1999", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "nascar-2000", + "cart_code": "NN2", + "cover_art_local": "coverart/NASCAR 2000-01.png", + "description": "", + "loose_price": 7.34, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 156, + "title": "NBA Courtside 2 Featuring Kobe Bryant", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-courtside-2-featuring-kobe-bryant", + "cart_code": "", + "cover_art_local": "coverart/NBA Courtside 2 Featuring Kobe Bryant-01.png", + "description": "", + "loose_price": 12.22, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 157, + "title": "NBA Hangtime", + "publisher": "Midway", + "release_date": "January 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-hangtime", + "cart_code": "NNH", + "cover_art_local": "coverart/NBA Hangtime-01.png", + "description": "", + "loose_price": 24.99, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 158, + "title": "NBA In The Zone '98", + "publisher": "Konami", + "release_date": "February 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-in-the-zone-98", + "cart_code": "NNI", + "cover_art_local": "coverart/NBA in the Zone _98-01.png", + "description": "", + "loose_price": 6.24, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 159, + "title": "NBA In The Zone 2000", + "publisher": "Konami", + "release_date": "February 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-in-the-zone-2000", + "cart_code": "", + "cover_art_local": "coverart/NBA in the Zone 2000-01.png", + "description": "", + "loose_price": 26.65, + "rarity_pct": 21, + "rarity_label": "Common" + }, + { + "id": 160, + "title": "NBA Jam '99", + "publisher": "Acclaim", + "release_date": "December 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-jam-99", + "cart_code": "NNM", + "cover_art_local": "coverart/NBA Jam 99-01.png", + "description": "", + "loose_price": 13.98, + "rarity_pct": 21, + "rarity_label": "Common" + }, + { + "id": 161, + "title": "NBA Jam 2000", + "publisher": "Acclaim", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-jam-2000", + "cart_code": "NNL", + "cover_art_local": "coverart/NBA Jam 2000-01.png", + "description": "", + "loose_price": 22.9, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 162, + "title": "NBA Live '99", + "publisher": "EA Sports", + "release_date": "November 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "nba-live-99", + "cart_code": "NNN", + "cover_art_local": "coverart/NBA Live 99-01.png", + "description": "", + "loose_price": 6.03, + "rarity_pct": 25, + "rarity_label": "Common" + }, + { + "id": 163, + "title": "NBA Live 2000", + "publisher": "EA Sports", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-live-2000", + "cart_code": "NNR", + "cover_art_local": "coverart/NBA Live 2000-01.png", + "description": "", + "loose_price": 6.01, + "rarity_pct": 15, + "rarity_label": "Very Common" + }, + { + "id": 164, + "title": "NBA Pro '99", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-pro-99", + "cart_code": "", + "cover_art_local": "coverart/NBA Hangtime-01.png", + "description": "", + "loose_price": 10.76, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 165, + "title": "NBA Showtime: NBA on NBC", + "publisher": "Midway", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nba-showtime-nba-on-nbc", + "cart_code": "NNS", + "cover_art_local": "coverart/NBA Showtime_ NBA on NBC-01.png", + "description": "The adventure begins when you leave the road behind!", + "loose_price": 15.48, + "rarity_pct": 38, + "rarity_label": "Uncommon" + }, + { + "id": 166, + "title": "NFL Blitz", + "publisher": "Midway", + "release_date": "September 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-blitz", + "cart_code": "NFB", + "cover_art_local": "coverart/NFL Blitz-01.png", + "description": "", + "loose_price": 23.76, + "rarity_pct": 12, + "rarity_label": "Very Common" + }, + { + "id": 167, + "title": "NFL Blitz 2000", + "publisher": "Midway", + "release_date": "August 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-blitz-2000", + "cart_code": "NFC", + "cover_art_local": "coverart/NFL Blitz 2000-01.png", + "description": "", + "loose_price": 22.88, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 168, + "title": "NFL Blitz 2001", + "publisher": "Midway", + "release_date": "September 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-blitz-2001", + "cart_code": "NFE", + "cover_art_local": "coverart/NFL Blitz 2001-01.png", + "description": "", + "loose_price": 24.67, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 169, + "title": "NFL Blitz: Special Edition", + "publisher": "Midway", + "release_date": "September 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-blitz-special-edition", + "cart_code": "", + "cover_art_local": "coverart/NFL Blitz_ Special Edition-01.png", + "description": "", + "loose_price": 132.45, + "rarity_pct": 31, + "rarity_label": "Uncommon" + }, + { + "id": 170, + "title": "NFL Quarterback Club '98", + "publisher": "Acclaim", + "release_date": "October 1997", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-quarterback-club-98", + "cart_code": "NQC", + "cover_art_local": "coverart/NFL Quarterback Club 98-01.png", + "description": "", + "loose_price": 5.88, + "rarity_pct": 7, + "rarity_label": "Extremely Common" + }, + { + "id": 171, + "title": "NFL Quarterback Club '99", + "publisher": "Acclaim", + "release_date": "November 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-quarterback-club-99", + "cart_code": "NQD", + "cover_art_local": "coverart/NFL Quarterback Club 99-01.png", + "description": "", + "loose_price": 4.99, + "rarity_pct": 9, + "rarity_label": "Extremely Common" + }, + { + "id": 172, + "title": "NFL Quarterback Club 2000", + "publisher": "Acclaim", + "release_date": "September 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-quarterback-club-2000", + "cart_code": "NQE", + "cover_art_local": "coverart/NFL Quarterback Club 2000-01.png", + "description": "", + "loose_price": 6.2, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 173, + "title": "NFL Quarterback Club 2001", + "publisher": "Acclain", + "release_date": "August 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nfl-quarterback-club-2001", + "cart_code": "NQF", + "cover_art_local": "coverart/NFL QB Club 2001-01.png", + "description": "", + "loose_price": 11.05, + "rarity_pct": 27, + "rarity_label": "Common" + }, + { + "id": 174, + "title": "NHL '99", + "publisher": "EA Sports", + "release_date": "October 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nhl-99", + "cart_code": "NHY", + "cover_art_local": "coverart/NHL 99-01.png", + "description": "", + "loose_price": 11.03, + "rarity_pct": 22, + "rarity_label": "Common" + }, + { + "id": 175, + "title": "NHL Breakaway '98", + "publisher": "Acclaim", + "release_date": "February 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nhl-breakaway-98", + "cart_code": "NHA", + "cover_art_local": "coverart/NHL Breakaway 98-01.png", + "description": "", + "loose_price": 6.99, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 176, + "title": "NHL Breakaway '99", + "publisher": "Acclaim", + "release_date": "December 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nhl-breakaway-99", + "cart_code": "NHC", + "cover_art_local": "coverart/NHL Breakaway 99-01.png", + "description": "", + "loose_price": 18.38, + "rarity_pct": 36, + "rarity_label": "Uncommon" + }, + { + "id": 177, + "title": "NHL Pro '99", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nhl-pro-99", + "cart_code": "", + "cover_art_local": "coverart/NHL Blades of Steel _99-01.png", + "description": "", + "loose_price": 11.03, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 178, + "title": "Nightmare Creatures", + "publisher": "Activision", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nightmare-creatures", + "cart_code": "NNE", + "cover_art_local": "coverart/Nightmare Creatures-01.png", + "description": "", + "loose_price": 24.99, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 179, + "title": "Nuclear Strike 64", + "publisher": "THQ", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "nuclear-strike-64", + "cart_code": "NNX", + "cover_art_local": "coverart/Nuclear Strike 64-01.png", + "description": "", + "loose_price": 24.17, + "rarity_pct": 52, + "rarity_label": "Very Sought After" + }, + { + "id": 180, + "title": "Off Road Challenge", + "publisher": "Midway", + "release_date": "June 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "off-road-challenge", + "cart_code": "", + "cover_art_local": "coverart/Off Road Challenge-01.png", + "description": "", + "loose_price": 15.0, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 181, + "title": "Ogre Battle 64: Person of Lordly Caliber", + "publisher": "Atlus Software", + "release_date": "October 2000", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": true, + "completed": false, + "condition": "5.0", + "slug": "ogre-battle-64-person-of-lordly-caliber", + "cart_code": "NOB", + "cover_art_local": "coverart/Ogre Battle 64_ Person of Lordly Caliber-01.png", + "description": "", + "loose_price": 160.08, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 182, + "title": "Olympic Hockey '98", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "olympic-hockey-98", + "cart_code": "", + "cover_art_local": "coverart/Olympic Hockey 98-01.png", + "description": "", + "loose_price": 18.99, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 183, + "title": "Operation WinBack", + "publisher": "Koei", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "operation-winback", + "cart_code": "", + "cover_art_local": "coverart/WinBack_ Covert Operations-01.png", + "description": "", + "loose_price": 20.35, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 184, + "title": "Paper Mario", + "publisher": "Nintendo", + "release_date": "February 2001", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "5.0", + "slug": "paper-mario", + "cart_code": "NPM", + "cover_art_local": "coverart/Paper Mario-01.png", + "description": "", + "loose_price": 92.88, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 185, + "title": "Paperboy", + "publisher": "Mindscape", + "release_date": "October 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "paperboy", + "cart_code": "NPB", + "cover_art_local": "coverart/Paperboy-01.png", + "description": "", + "loose_price": 16.99, + "rarity_pct": 32, + "rarity_label": "Uncommon" + }, + { + "id": 186, + "title": "Penny Racers", + "publisher": "THQ", + "release_date": "February 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "penny-racers", + "cart_code": "", + "cover_art_local": "coverart/Penny Racers-01.png", + "description": "", + "loose_price": 26.33, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 187, + "title": "Perfect Dark", + "publisher": "Nintendo", + "release_date": "May 2000", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "perfect-dark", + "cart_code": "NPD", + "cover_art_local": "coverart/Perfect Dark-01.png", + "description": "Step into the Dark... As Cardington Institute's most promising new Agent, Joanna Dark must uncover the truth behind the dataDyne Corporation's recent technological breakthroughs, breakthroughs which could have serious consequences for mankind.", + "loose_price": 22.4, + "rarity_pct": 5, + "rarity_label": "Extremely Common" + }, + { + "id": 188, + "title": "PGA European Tour", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "pga-european-tour", + "cart_code": "", + "cover_art_local": "coverart/PGA European Tour-01.png", + "description": "", + "loose_price": 110.24, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 189, + "title": "Pilotwings 64", + "publisher": "Nintendo", + "release_date": "September 1996", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "pilotwings-64", + "cart_code": "NPW", + "cover_art_local": "coverart/Pilotwings 64-01.png", + "description": "", + "loose_price": 19.99, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 190, + "title": "Pokémon Puzzle League", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "pok-mon-puzzle-league", + "cart_code": "", + "cover_art_local": "coverart/Pokemon Puzzle League-01.png", + "description": "", + "loose_price": 27.22, + "rarity_pct": 46, + "rarity_label": "Sought After" + }, + { + "id": 191, + "title": "Pokémon Snap", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "pok-mon-snap", + "cart_code": "", + "cover_art_local": "coverart/Pokemon Snap-01.png", + "description": "", + "loose_price": 19.42, + "rarity_pct": 17, + "rarity_label": "Very Common" + }, + { + "id": 192, + "title": "Pokémon Stadium", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "pok-mon-stadium", + "cart_code": "", + "cover_art_local": "coverart/Pokemon Stadium-01.png", + "description": "", + "loose_price": 26.74, + "rarity_pct": 20, + "rarity_label": "Very Common" + }, + { + "id": 193, + "title": "Pokémon Stadium 2", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "pok-mon-stadium-2", + "cart_code": "", + "cover_art_local": "coverart/Pokemon Stadium 2-01.png", + "description": "", + "loose_price": 85.75, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 194, + "title": "Polaris SnoCross", + "publisher": "Vatical Entertainment", + "release_date": "December 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "polaris-snocross", + "cart_code": "", + "cover_art_local": "coverart/Polaris SnoCross-01.png", + "description": "", + "loose_price": 33.51, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 195, + "title": "Power Rangers Lightspeed Rescue", + "publisher": "THQ", + "release_date": "October 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "power-rangers-lightspeed-rescue", + "cart_code": "", + "cover_art_local": "coverart/Power Rangers_ Lightspeed Rescue-01.png", + "description": "", + "loose_price": 10.75, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 196, + "title": "Quake 64", + "publisher": "Midway", + "release_date": "March 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "quake-64", + "cart_code": "NQK", + "cover_art_local": "coverart/Quake-01.png", + "description": "", + "loose_price": 25.0, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 197, + "title": "Quake II", + "publisher": "Activision", + "release_date": "June 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "quake-ii", + "cart_code": "NQ2", + "cover_art_local": "coverart/Quake II-01.png", + "description": "", + "loose_price": 22.2, + "rarity_pct": 25, + "rarity_label": "Common" + }, + { + "id": 198, + "title": "Rainbow Six", + "publisher": "Red Storm", + "release_date": "November 1999", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rainbow-six", + "cart_code": "NR6", + "cover_art_local": "coverart/Tom Clancy_s Rainbow Six-01.png", + "description": "", + "loose_price": 13.43, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 199, + "title": "Rally Challenge 2000", + "publisher": "South Peak Interactive", + "release_date": "June 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rally-challenge-2000", + "cart_code": "NRC", + "cover_art_local": "coverart/Rally Challenge 2000-01.png", + "description": "", + "loose_price": 23.99, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 200, + "title": "Rampage 2: Universal Tour", + "publisher": "Midway", + "release_date": "March 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rampage-2-universal-tour", + "cart_code": "NRB", + "cover_art_local": "coverart/Rampage 2_ Universal Tour-01.png", + "description": "", + "loose_price": 29.98, + "rarity_pct": 29, + "rarity_label": "Common" + }, + { + "id": 201, + "title": "Rampage World Tour", + "publisher": "Midway", + "release_date": "March 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rampage-world-tour", + "cart_code": "NRA", + "cover_art_local": "coverart/Rampage_ World Tour-01.png", + "description": "", + "loose_price": 29.99, + "rarity_pct": 53, + "rarity_label": "Very Sought After" + }, + { + "id": 202, + "title": "Rat Attack!", + "publisher": "Mindscape", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rat-attack", + "cart_code": "", + "cover_art_local": "coverart/Rat Attack!-01.png", + "description": "", + "loose_price": 99.21, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 203, + "title": "Rayman 2: The Great Escape", + "publisher": "Ubi Soft", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rayman-2-the-great-escape", + "cart_code": "NR2", + "cover_art_local": "coverart/Rayman 2_ The Great Escape-01.png", + "description": "", + "loose_price": 29.99, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 204, + "title": "Razor Freestyle Scooter", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "razor-freestyle-scooter", + "cart_code": "", + "cover_art_local": "coverart/Razor Freestyle Scooter-01.png", + "description": "", + "loose_price": 39.75, + "rarity_pct": 32, + "rarity_label": "Uncommon" + }, + { + "id": 205, + "title": "Re-Volt", + "publisher": "Acclaim", + "release_date": "August 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "re-volt", + "cart_code": "NRV", + "cover_art_local": "coverart/Re-Volt-01.png", + "description": "", + "loose_price": 18.83, + "rarity_pct": 7, + "rarity_label": "Extremely Common" + }, + { + "id": 206, + "title": "Ready 2 Rumble Boxing", + "publisher": "Midway", + "release_date": "November 1999", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "ready-2-rumble-boxing", + "cart_code": "NRD", + "cover_art_local": "coverart/Ready 2 Rumble Boxing-01.png", + "description": "", + "loose_price": 14.85, + "rarity_pct": 23, + "rarity_label": "Common" + }, + { + "id": 207, + "title": "Ready 2 Rumble Boxing: Round 2", + "publisher": "Midway", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "ready-2-rumble-boxing-round-2", + "cart_code": "NRR", + "cover_art_local": "coverart/Ready 2 Rumble Boxing_ Round 2-01.png", + "description": "", + "loose_price": 17.0, + "rarity_pct": 35, + "rarity_label": "Uncommon" + }, + { + "id": 208, + "title": "Resident Evil 2", + "publisher": "Capcom", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "resident-evil-2", + "cart_code": "NRE", + "cover_art_local": "coverart/Resident Evil 2-01.png", + "description": "IF THE SUSPENSE DOESN'T KILL YOU, SOMETHING ELSE WILL... Face your fears in the ultimate test of survival. Something is desperately wrong in Raccoon City. A mysterious muta-genic virus has broken loose and the whole town is infested. Blood-thirsty zombies, hideous mutations now overwhelm the community. When Leon and Claire arrive in town, their nightmare is just beginning. Now, you control their destiny.", + "loose_price": 74.06, + "rarity_pct": 44, + "rarity_label": "Sought After" + }, + { + "id": 209, + "title": "Ridge Racer 64", + "publisher": "Nintendo", + "release_date": "February 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "ridge-racer-64", + "cart_code": "NRU", + "cover_art_local": "coverart/RR64_ Ridge Racer 64-01.png", + "description": "", + "loose_price": 16.54, + "rarity_pct": 11, + "rarity_label": "Very Common" + }, + { + "id": 210, + "title": "Road Rash 64", + "publisher": "EA Sports", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "road-rash-64", + "cart_code": "NRO", + "cover_art_local": "coverart/Road Rash 64-01.png", + "description": "", + "loose_price": 35.0, + "rarity_pct": 53, + "rarity_label": "Very Sought After" + }, + { + "id": 211, + "title": "Roadsters", + "publisher": "Titus", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "roadsters", + "cart_code": "", + "cover_art_local": "coverart/Roadsters-01.png", + "description": "", + "loose_price": 16.37, + "rarity_pct": 34, + "rarity_label": "Uncommon" + }, + { + "id": 212, + "title": "Robotron 64", + "publisher": "Crave Entertainment", + "release_date": "January 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "robotron-64", + "cart_code": "", + "cover_art_local": "coverart/Robotron 64-01.png", + "description": "", + "loose_price": 19.99, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 213, + "title": "Rocket: Robot on Wheels", + "publisher": "Ubi Soft", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rocket-robot-on-wheels", + "cart_code": "NRK", + "cover_art_local": "coverart/Rocket_ Robot on Wheels-01.png", + "description": "", + "loose_price": 84.81, + "rarity_pct": 64, + "rarity_label": "Highly Collectible" + }, + { + "id": 214, + "title": "Rugrats in Paris: The Movie", + "publisher": "THQ", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rugrats-in-paris-the-movie", + "cart_code": "NRP", + "cover_art_local": "coverart/Rugrats in Paris_ The Movie-01.png", + "description": "", + "loose_price": 11.5, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 215, + "title": "Rugrats: Treasure Hunt", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "rugrats-treasure-hunt", + "cart_code": "", + "cover_art_local": "coverart/Rugrats_ Scavenger Hunt-01.png", + "description": "", + "loose_price": 9.49, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 216, + "title": "Rush 2: Extreme Racing", + "publisher": "Midway", + "release_date": "November 1998", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "rush-2-extreme-racing", + "cart_code": "NRZ", + "cover_art_local": "coverart/Rush 2_ Extreme Racing USA-01.png", + "description": "", + "loose_price": 19.99, + "rarity_pct": 19, + "rarity_label": "Very Common" + }, + { + "id": 217, + "title": "S.C.A.R.S.", + "publisher": "Ubi Soft", + "release_date": "December 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "s-c-a-r-s", + "cart_code": "", + "cover_art_local": "coverart/S.C.A.R.S.-01.png", + "description": "", + "loose_price": 25.51, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 218, + "title": "San Francisco Rush", + "publisher": "Midway", + "release_date": "November 1997", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "san-francisco-rush", + "cart_code": "", + "cover_art_local": "coverart/San Francisco Rush_ Extreme Racing-01.png", + "description": "", + "loose_price": 14.79, + "rarity_pct": 49, + "rarity_label": "Sought After" + }, + { + "id": 219, + "title": "San Francisco Rush 2049", + "publisher": "Midway", + "release_date": "September 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "san-francisco-rush-2049", + "cart_code": "", + "cover_art_local": "coverart/San Francisco Rush 2049-01.png", + "description": "", + "loose_price": 45.23, + "rarity_pct": 49, + "rarity_label": "Sought After" + }, + { + "id": 220, + "title": "Scooby-Doo! Classic Creep Capers", + "publisher": "THQ", + "release_date": "December 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "scooby-doo-classic-creep-capers", + "cart_code": "", + "cover_art_local": "coverart/Scooby-Doo! Classic Creep Capers-01.png", + "description": "", + "loose_price": 22.72, + "rarity_pct": 56, + "rarity_label": "Very Sought After" + }, + { + "id": 221, + "title": "Sesame Street: Elmo's Letter Adventure", + "publisher": "Newkidco", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "sesame-street-elmo-s-letter-adventure", + "cart_code": "", + "cover_art_local": "coverart/Sesame Street_ Elmo_s Letter Adventure-01.png", + "description": "", + "loose_price": 15.5, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 222, + "title": "Sesame Street: Elmo's Number Journey", + "publisher": "Newkidco", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "sesame-street-elmo-s-number-journey", + "cart_code": "", + "cover_art_local": "coverart/Sesame Street_ Elmo_s Number Journey-01.png", + "description": "", + "loose_price": 15.38, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 223, + "title": "Shadow Man", + "publisher": "Acclaim", + "release_date": "August 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "shadow-man", + "cart_code": "NRI", + "cover_art_local": "coverart/Shadow Man-01.png", + "description": "", + "loose_price": 15.55, + "rarity_pct": 30, + "rarity_label": "Common" + }, + { + "id": 224, + "title": "Shadowgate 64: Trials of the Four Towers", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "shadowgate-64-trials-of-the-four-towers", + "cart_code": "NSG", + "cover_art_local": "coverart/ShadowGate 64_ Trials of the Four Towers-01.png", + "description": "", + "loose_price": 46.74, + "rarity_pct": 74, + "rarity_label": "Extremely Collectible" + }, + { + "id": 225, + "title": "Snowboard Kids", + "publisher": "Atlus Software", + "release_date": "February 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "snowboard-kids", + "cart_code": "NSO", + "cover_art_local": "coverart/Snowboard Kids-01.png", + "description": "", + "loose_price": 70.09, + "rarity_pct": 39, + "rarity_label": "Uncommon" + }, + { + "id": 226, + "title": "Snowboard Kids 2", + "publisher": "Atlus Software", + "release_date": "March 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "snowboard-kids-2", + "cart_code": "NS2", + "cover_art_local": "coverart/Snowboard Kids 2-01.png", + "description": "", + "loose_price": 101.92, + "rarity_pct": 71, + "rarity_label": "Extremely Collectible" + }, + { + "id": 227, + "title": "South Park", + "publisher": "Acclaim", + "release_date": "December 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "south-park", + "cart_code": "NSP", + "cover_art_local": "coverart/South Park-01.png", + "description": "", + "loose_price": 25.71, + "rarity_pct": 14, + "rarity_label": "Very Common" + }, + { + "id": 228, + "title": "South Park Rally", + "publisher": "Acclaim", + "release_date": "February 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "south-park-rally", + "cart_code": "NSR", + "cover_art_local": "coverart/South Park Rally-01.png", + "description": "", + "loose_price": 29.99, + "rarity_pct": 32, + "rarity_label": "Uncommon" + }, + { + "id": 229, + "title": "South Park: Chef's Luv Shack", + "publisher": "Acclaim", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "south-park-chef-s-luv-shack", + "cart_code": "NSC", + "cover_art_local": "coverart/South Park_ Chef_s Luv Shack-01.png", + "description": "", + "loose_price": 24.99, + "rarity_pct": 26, + "rarity_label": "Common" + }, + { + "id": 230, + "title": "Space Invaders", + "publisher": "Activision", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "space-invaders", + "cart_code": "NSI", + "cover_art_local": "coverart/Space Invaders-01.png", + "description": "", + "loose_price": 23.21, + "rarity_pct": 62, + "rarity_label": "Highly Collectible" + }, + { + "id": 231, + "title": "Space Station Silicon Valley", + "publisher": "Take 2 Interactive", + "release_date": "October 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "space-station-silicon-valley", + "cart_code": "NSV", + "cover_art_local": "coverart/Space Station Silicon Valley-01.png", + "description": "", + "loose_price": 79.99, + "rarity_pct": 56, + "rarity_label": "Very Sought After" + }, + { + "id": 232, + "title": "Spider-Man", + "publisher": "Activision", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "spider-man", + "cart_code": "NSX", + "cover_art_local": "coverart/Spider-Man-01.png", + "description": "", + "loose_price": 32.92, + "rarity_pct": 42, + "rarity_label": "Sought After" + }, + { + "id": 233, + "title": "Star Fox 64", + "publisher": "Nintendo", + "release_date": "June 1997", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "star-fox-64", + "cart_code": "NFX", + "cover_art_local": "coverart/Star Fox 64-01.png", + "description": "The Lylat system has been invaded! Join Fox McCloud and his Star Fox team as they fight to save the galaxy from the clutches of the evil Andross. Travel to many different 3-D worlds. Battle the enemy in the air and on the ground and listen in as Fox McCloud interacts with a cast of characters. See how it feels to feel what you see! The N64 Rumble Pak controller accessory instantly transmits all the bumps and blasts during the action. It's a new jolt to your game play experience!", + "loose_price": 26.0, + "rarity_pct": 10, + "rarity_label": "Extremely Common" + }, + { + "id": 234, + "title": "Star Soldier: Vanishing Earth", + "publisher": "Electro Brain", + "release_date": "December 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "star-soldier-vanishing-earth", + "cart_code": "", + "cover_art_local": "coverart/Star Soldier_ Vanishing Earth-01.png", + "description": "", + "loose_price": 64.64, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 235, + "title": "Star Wars Episode I: Racer", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "star-wars-episode-i-racer", + "cart_code": "NSW", + "cover_art_local": "coverart/Star Wars Episode I_ Racer-01.png", + "description": "", + "loose_price": 12.72, + "rarity_pct": 10, + "rarity_label": "Extremely Common" + }, + { + "id": 236, + "title": "Star Wars: Episode I Battle for Naboo", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "star-wars-episode-i-battle-for-naboo", + "cart_code": "", + "cover_art_local": "coverart/Star Wars_ Episode I_ Battle for Naboo-01.png", + "description": "", + "loose_price": 30.56, + "rarity_pct": 27, + "rarity_label": "Common" + }, + { + "id": 237, + "title": "Star Wars: Rogue Squadron", + "publisher": "Nintendo", + "release_date": "December 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "star-wars-rogue-squadron", + "cart_code": "NRS", + "cover_art_local": "coverart/Star Wars_ Rogue Squadron-01.png", + "description": "Fly against the evil Empire! As Luke Skywalker, co-founder of the Rebel Alliance's elite Rogue Squadron, you must combat the evil Galactic Empire. Engage in intense, fast-paced planetary air-to-ground and air-to-air missions - dogfights, search and destroy, reconnaissance, bombing runs, rescue assignments and more!", + "loose_price": 16.25, + "rarity_pct": 10, + "rarity_label": "Extremely Common" + }, + { + "id": 238, + "title": "Star Wars: Shadows of the Empire", + "publisher": "Nintendo", + "release_date": "December 1996", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "star-wars-shadows-of-the-empire", + "cart_code": "NSE", + "cover_art_local": "coverart/Star Wars_ Shadows of the Empire-01.png", + "description": "", + "loose_price": 15.0, + "rarity_pct": 10, + "rarity_label": "Extremely Common" + }, + { + "id": 239, + "title": "Starcraft 64", + "publisher": "Nintendo", + "release_date": "June 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "starcraft-64", + "cart_code": "", + "cover_art_local": "coverart/StarCraft 64-01.png", + "description": "", + "loose_price": 99.5, + "rarity_pct": 72, + "rarity_label": "Extremely Collectible" + }, + { + "id": 240, + "title": "Starshot: Space Circus Fever", + "publisher": "Ocean", + "release_date": "June 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "starshot-space-circus-fever", + "cart_code": "", + "cover_art_local": "coverart/Starshot_ Space Circus Fever-01.png", + "description": "", + "loose_price": 120.59, + "rarity_pct": 20, + "rarity_label": "Very Common" + }, + { + "id": 241, + "title": "Stunt Racer 64", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "stunt-racer-64", + "cart_code": "", + "cover_art_local": "coverart/Stunt Racer 64-01.png", + "description": "", + "loose_price": 342.62, + "rarity_pct": 69, + "rarity_label": "Highly Collectible" + }, + { + "id": 242, + "title": "Super Bowling", + "publisher": "UFO", + "release_date": "February 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "super-bowling", + "cart_code": "NSB", + "cover_art_local": "coverart/Super Bowling-01.png", + "description": "", + "loose_price": 577.47, + "rarity_pct": 51, + "rarity_label": "Very Sought After" + }, + { + "id": 243, + "title": "Super Mario 64", + "publisher": "Nintendo", + "release_date": "September 1996", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "super-mario-64", + "cart_code": "NSM", + "cover_art_local": "coverart/Super Mario 64-01.png", + "description": "Mario is super in a whole new way! Combining the finest 3-D graphics ever developed for a video game and an explosive sound track, Super Mario 64 becomes a new standard for video games. It's packed with bruising battles, daunting obstacle courses and underwater adventures. Retrieve the Power Stars from their hidden locations and confront your arch nemesis -- Bowser, King of the Koopas!", + "loose_price": 40.96, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 244, + "title": "Super Smash Bros.", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "super-smash-bros", + "cart_code": "NSU", + "cover_art_local": "coverart/Super Smash Bros.-01.png", + "description": "", + "loose_price": 50.6, + "rarity_pct": 63, + "rarity_label": "Highly Collectible" + }, + { + "id": 245, + "title": "Supercross 2000", + "publisher": "EA Sports", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "supercross-2000", + "cart_code": "", + "cover_art_local": "coverart/SuperCross 2000-01.png", + "description": "", + "loose_price": 9.96, + "rarity_pct": 20, + "rarity_label": "Very Common" + }, + { + "id": 246, + "title": "Superman 64", + "publisher": "Titus", + "release_date": "May 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "superman-64", + "cart_code": "", + "cover_art_local": "coverart/Superman-01.png", + "description": "", + "loose_price": 14.99, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 247, + "title": "Tetrisphere", + "publisher": "Nintendo", + "release_date": "August 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "tetrisphere", + "cart_code": "NTH", + "cover_art_local": "coverart/Tetrisphere-01.png", + "description": "", + "loose_price": 13.0, + "rarity_pct": 41, + "rarity_label": "Sought After" + }, + { + "id": 248, + "title": "The Legend of Zelda: Majora's Mask", + "publisher": "Nintendo", + "release_date": "October 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "the-legend-of-zelda-majora-s-mask", + "cart_code": "NZS", + "cover_art_local": "coverart/The Legend of Zelda_ Majora_s Mask-01.png", + "description": "Link's all-new epic adventure lands him in the mystical world of Termina, where ever-present clocks count down the hours until a menacing moon falls from the sky above. When his horse and Ocarina are stolen by a strange, masked figure, Link embarks on an urgent quest to solve the mystery of the moon, save the world from destruction, and find his way back to the peaceful land of Hyrule!", + "loose_price": 87.49, + "rarity_pct": 48, + "rarity_label": "Sought After" + }, + { + "id": 249, + "title": "The Legend of Zelda: Ocarina of Time", + "publisher": "Nintendo", + "release_date": "November 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": "5.0", + "slug": "the-legend-of-zelda-ocarina-of-time", + "cart_code": "NZL", + "cover_art_local": "coverart/The Legend of Zelda_ Ocarina of Time-01.png", + "description": "Ganondorf, the evil King of Thieves, is on the move, threatening the peaceful land of Hyrule. He is determined to steal his way into the legendary Sacred Realm in hopes of harnessing the power of the mythical Triforce. As the young hero Link, it is your destiny to thwart Ganondorf's evil schemes. Navi, your guardian fairy, will guide you as you venture through the main regions of Hyrul, from the volcanic caves of Death Mountain to the treacherous waters of Zora's Domain. Before you complete this epic quest, you'll delve into deadly dungeons, collect weapons of great power and learn the spells you need to conquer the most irresistible force of all-time.", + "loose_price": 46.0, + "rarity_pct": 52, + "rarity_label": "Very Sought After" + }, + { + "id": 250, + "title": "The New Tetris", + "publisher": "Nintendo", + "release_date": "July 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "the-new-tetris", + "cart_code": "NNT", + "cover_art_local": "coverart/The New Tetris-01.png", + "description": "", + "loose_price": 30.37, + "rarity_pct": 65, + "rarity_label": "Highly Collectible" + }, + { + "id": 251, + "title": "The Powerpuff Girls: Chemical X-Traction", + "publisher": "Bay Area Mutimedia", + "release_date": "November 2001", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "the-powerpuff-girls-chemical-x-traction", + "cart_code": "", + "cover_art_local": "coverart/The Powerpuff Girls_ Chemical X-traction-01.png", + "description": "", + "loose_price": 16.7, + "rarity_pct": 49, + "rarity_label": "Sought After" + }, + { + "id": 252, + "title": "Tigger's Honey Hunt", + "publisher": "Ubi Soft", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "tigger-s-honey-hunt", + "cart_code": "", + "cover_art_local": "coverart/Tigger_s Honey Hunt-01.png", + "description": "", + "loose_price": 19.99, + "rarity_pct": 52, + "rarity_label": "Very Sought After" + }, + { + "id": 253, + "title": "Tom and Jerry in Fists of Furry", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "tom-and-jerry-in-fists-of-furry", + "cart_code": "", + "cover_art_local": "coverart/Tom and Jerry in Fists of Furry-01.png", + "description": "", + "loose_price": 31.96, + "rarity_pct": 64, + "rarity_label": "Highly Collectible" + }, + { + "id": 254, + "title": "Tonic Trouble", + "publisher": "Ubi Soft", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "tonic-trouble", + "cart_code": "NTO", + "cover_art_local": "coverart/Tonic Trouble-01.png", + "description": "", + "loose_price": 25.0, + "rarity_pct": 41, + "rarity_label": "Sought After" + }, + { + "id": 255, + "title": "Tony Hawk's Pro Skater 2", + "publisher": "Activision", + "release_date": "August 2001", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "tony-hawk-s-pro-skater-2", + "cart_code": "NT2", + "cover_art_local": "coverart/Tony Hawk_s Pro Skater 2-01.png", + "description": "", + "loose_price": 23.38, + "rarity_pct": 27, + "rarity_label": "Common" + }, + { + "id": 256, + "title": "Tony Hawk's Pro Skater 3", + "publisher": "Activision", + "release_date": "August 2002", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "tony-hawk-s-pro-skater-3", + "cart_code": "NT3", + "cover_art_local": "coverart/Tony Hawk_s Pro Skater 3-01.png", + "description": "", + "loose_price": 59.99, + "rarity_pct": 41, + "rarity_label": "Sought After" + }, + { + "id": 257, + "title": "Tony Hawk's Skateboarding", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "2.0", + "slug": "tony-hawk-s-skateboarding", + "cart_code": "NTK", + "cover_art_local": "coverart/Tony Hawk_s Pro Skater-01.png", + "description": "", + "loose_price": 13.99, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 258, + "title": "Top Gear Hyper-Bike", + "publisher": "Kemco", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "top-gear-hyper-bike", + "cart_code": "", + "cover_art_local": "coverart/Top Gear Hyper-Bike-01.png", + "description": "", + "loose_price": 24.14, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 259, + "title": "Top Gear Overdrive", + "publisher": "Kemco", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "top-gear-overdrive", + "cart_code": "NTF", + "cover_art_local": "coverart/Top Gear Overdrive-01.png", + "description": "", + "loose_price": 13.11, + "rarity_pct": 39, + "rarity_label": "Uncommon" + }, + { + "id": 260, + "title": "Top Gear Rally", + "publisher": "Midway", + "release_date": "October 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "top-gear-rally", + "cart_code": "NTR", + "cover_art_local": "coverart/Top Gear Rally-01.png", + "description": "", + "loose_price": 11.57, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 261, + "title": "Top Gear Rally 2", + "publisher": "EA Sports", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "top-gear-rally-2", + "cart_code": "NTS", + "cover_art_local": "coverart/Top Gear Rally 2-01.png", + "description": "", + "loose_price": 18.38, + "rarity_pct": 33, + "rarity_label": "Uncommon" + }, + { + "id": 262, + "title": "Toy Story 2: Buzz Lightyear to the Rescue", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "toy-story-2-buzz-lightyear-to-the-rescue", + "cart_code": "NT9", + "cover_art_local": "coverart/Toy Story 2_ Buzz Lightyear to the Rescue!-01.png", + "description": "", + "loose_price": 16.23, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 263, + "title": "Transformers: Beast Wars Transmetals", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "transformers-beast-wars-transmetals", + "cart_code": "", + "cover_art_local": "coverart/Transformers_ Beast Wars Transmetals-01.png", + "description": "", + "loose_price": 95.55, + "rarity_pct": 89, + "rarity_label": "Super Rare" + }, + { + "id": 264, + "title": "Triple Play 2000", + "publisher": "EA Sports", + "release_date": "March 1999", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "triple-play-2000", + "cart_code": "NTP", + "cover_art_local": "coverart/Triple Play 2000-01.png", + "description": "", + "loose_price": 7.21, + "rarity_pct": 6, + "rarity_label": "Extremely Common" + }, + { + "id": 265, + "title": "Turok 2: Seeds of Evil", + "publisher": "Acclaim", + "release_date": "December 1998", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "turok-2-seeds-of-evil", + "cart_code": "NTU", + "cover_art_local": "coverart/Turok 2_ Seeds of Evil-01.png", + "description": "", + "loose_price": 13.25, + "rarity_pct": 7, + "rarity_label": "Extremely Common" + }, + { + "id": 266, + "title": "Turok 3: Shadow of Oblivion", + "publisher": "Acclain", + "release_date": "August 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "turok-3-shadow-of-oblivion", + "cart_code": "NTV", + "cover_art_local": "coverart/Turok 3_ Shadow of Oblivion-01.png", + "description": "", + "loose_price": 40.0, + "rarity_pct": 47, + "rarity_label": "Sought After" + }, + { + "id": 267, + "title": "Turok: Dinosaur Hunter", + "publisher": "Acclaim", + "release_date": "February 1997", + "owned": true, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "turok-dinosaur-hunter", + "cart_code": "NTW", + "cover_art_local": "coverart/Turok_ Dinosaur Hunter-01.png", + "description": "", + "loose_price": 15.99, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 268, + "title": "Turok: Rage Wars", + "publisher": "Acclaim", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "turok-rage-wars", + "cart_code": "NTX", + "cover_art_local": "coverart/Turok_ Rage Wars-01.png", + "description": "", + "loose_price": 14.99, + "rarity_pct": 17, + "rarity_label": "Very Common" + }, + { + "id": 269, + "title": "Twisted Edge: Extreme Snowboarding", + "publisher": "", + "release_date": "", + "owned": true, + "has_case": false, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "twisted-edge-extreme-snowboarding", + "cart_code": "NTE", + "cover_art_local": "coverart/Twisted Edge Extreme Snowboarding-01.png", + "description": "", + "loose_price": 9.56, + "rarity_pct": 13, + "rarity_label": "Very Common" + }, + { + "id": 270, + "title": "V-Rally Edition '99", + "publisher": "Infogrames", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "v-rally-edition-99", + "cart_code": "", + "cover_art_local": "coverart/V-Rally Edition 99-01.png", + "description": "", + "loose_price": 24.99, + "rarity_pct": 40, + "rarity_label": "Uncommon" + }, + { + "id": 271, + "title": "Vigilante 8", + "publisher": "Activision", + "release_date": "March 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "vigilante-8", + "cart_code": "NV8", + "cover_art_local": "coverart/Vigilante 8-01.png", + "description": "", + "loose_price": 27.72, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 272, + "title": "Vigilante 8: 2nd Offense", + "publisher": "Activision", + "release_date": "March 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "vigilante-8-2nd-offense", + "cart_code": "", + "cover_art_local": "coverart/Vigilante 8_ 2nd Offense-01.png", + "description": "", + "loose_price": 30.06, + "rarity_pct": 65, + "rarity_label": "Highly Collectible" + }, + { + "id": 273, + "title": "Virtual Chess 64", + "publisher": "Titus", + "release_date": "June 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "virtual-chess-64", + "cart_code": "NVC", + "cover_art_local": "coverart/Virtual Chess 64-01.png", + "description": "", + "loose_price": 19.97, + "rarity_pct": 43, + "rarity_label": "Sought After" + }, + { + "id": 274, + "title": "Virtual Pool 64", + "publisher": "Crave Entertainment", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "virtual-pool-64", + "cart_code": "NVP", + "cover_art_local": "coverart/Virtual Pool 64-01.png", + "description": "", + "loose_price": 12.14, + "rarity_pct": 14, + "rarity_label": "Very Common" + }, + { + "id": 275, + "title": "Waialae Country Club: True Golf Classics", + "publisher": "Nintendo", + "release_date": "July 1998", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": true, + "completed": false, + "condition": "2.0", + "slug": "waialae-country-club-true-golf-classics", + "cart_code": "NWA", + "cover_art_local": "coverart/Waialae Country Club_ True Golf Classics-01.png", + "description": "", + "loose_price": 8.07, + "rarity_pct": 10, + "rarity_label": "Extremely Common" + }, + { + "id": 276, + "title": "War Gods", + "publisher": "Midway", + "release_date": "May 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "war-gods", + "cart_code": "NWG", + "cover_art_local": "coverart/War Gods-01.png", + "description": "", + "loose_price": 11.96, + "rarity_pct": 27, + "rarity_label": "Common" + }, + { + "id": 277, + "title": "Wave Race 64", + "publisher": "Nintendo", + "release_date": "November 1996", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "3.0", + "slug": "wave-race-64", + "cart_code": "NRW", + "cover_art_local": "coverart/Wave Race 64-01.png", + "description": "", + "loose_price": 14.99, + "rarity_pct": 11, + "rarity_label": "Very Common" + }, + { + "id": 278, + "title": "Wayne Gretzky's 3D Hockey", + "publisher": "Midway", + "release_date": "November 1996", + "owned": true, + "has_case": true, + "cleaned": true, + "battery_replaced": false, + "completed": false, + "condition": "1.0", + "slug": "wayne-gretzky-s-3d-hockey", + "cart_code": "NWW", + "cover_art_local": "coverart/Wayne Gretzky_s 3D Hockey-01.png", + "description": "", + "loose_price": 9.97, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 279, + "title": "Wayne Gretzky's 3D Hockey '98", + "publisher": "Midway", + "release_date": "December 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wayne-gretzky-s-3d-hockey-98", + "cart_code": "NWX", + "cover_art_local": "coverart/Wayne Gretzky_s 3D Hockey _98-01.png", + "description": "", + "loose_price": 9.59, + "rarity_pct": 28, + "rarity_label": "Common" + }, + { + "id": 280, + "title": "WCW Backstage Assault", + "publisher": "Electronic Arts", + "release_date": "December 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wcw-backstage-assault", + "cart_code": "NWB", + "cover_art_local": "coverart/WCW Backstage Assault-01.png", + "description": "", + "loose_price": 13.0, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 281, + "title": "WCW Mayhem", + "publisher": "Electronic Arts", + "release_date": "September 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wcw-mayhem", + "cart_code": "NWM", + "cover_art_local": "coverart/WCW Mayhem-01.png", + "description": "", + "loose_price": 8.79, + "rarity_pct": 41, + "rarity_label": "Sought After" + }, + { + "id": 282, + "title": "WCW Nitro", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wcw-nitro", + "cart_code": "", + "cover_art_local": "coverart/WCW Nitro-01.png", + "description": "", + "loose_price": 12.11, + "rarity_pct": 14, + "rarity_label": "Very Common" + }, + { + "id": 283, + "title": "WCW vs. nWo: World Tour", + "publisher": "THQ", + "release_date": "November 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wcw-vs-nwo-world-tour", + "cart_code": "NWC", + "cover_art_local": "coverart/WCW Vs. nWo_ World Tour-01.png", + "description": "", + "loose_price": 9.23, + "rarity_pct": 37, + "rarity_label": "Uncommon" + }, + { + "id": 284, + "title": "WCW/nWo Revenge", + "publisher": "THQ", + "release_date": "October 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": "3.0", + "slug": "wcw-nwo-revenge", + "cart_code": "NWR", + "cover_art_local": "coverart/WCW_nWo Revenge-01.png", + "description": "Wave Race 64 is sure to provide some of the most exciting racing you've ever experienced. Feel the pounding and crashing of the waves as you accelerate into straight-aways, whip around the marker buoys and go airborne on the jump ramps. Don't race alone! Challenge a friend.", + "loose_price": 11.99, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 285, + "title": "Wetrix", + "publisher": "Ocean", + "release_date": "June 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wetrix", + "cart_code": "NWT", + "cover_art_local": "coverart/Wetrix-01.png", + "description": "", + "loose_price": 22.09, + "rarity_pct": 45, + "rarity_label": "Sought After" + }, + { + "id": 286, + "title": "Wheel of Fortune", + "publisher": "Gametek", + "release_date": "December 1997", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wheel-of-fortune", + "cart_code": "NWF", + "cover_art_local": "coverart/Wheel of Fortune-01.png", + "description": "", + "loose_price": 12.99, + "rarity_pct": 28, + "rarity_label": "Common" + }, + { + "id": 287, + "title": "WipeOut 64", + "publisher": "Psygnosis", + "release_date": "November 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wipeout-64", + "cart_code": "", + "cover_art_local": "coverart/Wipeout 64-01.png", + "description": "", + "loose_price": 12.23, + "rarity_pct": 8, + "rarity_label": "Extremely Common" + }, + { + "id": 288, + "title": "World Cup '98", + "publisher": "EA Sports", + "release_date": "May 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "world-cup-98", + "cart_code": "NWO", + "cover_art_local": "coverart/World Cup 98-01.png", + "description": "", + "loose_price": 17.77, + "rarity_pct": 18, + "rarity_label": "Very Common" + }, + { + "id": 289, + "title": "World Driver Championship", + "publisher": "", + "release_date": "", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "world-driver-championship", + "cart_code": "NWD", + "cover_art_local": "coverart/World Driver Championship-01.png", + "description": "", + "loose_price": 12.02, + "rarity_pct": 16, + "rarity_label": "Very Common" + }, + { + "id": 290, + "title": "Worms Armageddon", + "publisher": "Infogrames", + "release_date": "March 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "worms-armageddon", + "cart_code": "NWZ", + "cover_art_local": "coverart/Worms Armageddon-01.png", + "description": "", + "loose_price": 224.45, + "rarity_pct": 91, + "rarity_label": "Ultra Rare" + }, + { + "id": 291, + "title": "WWF Attitude", + "publisher": "Acclaim", + "release_date": "August 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wwf-attitude", + "cart_code": "NWU", + "cover_art_local": "coverart/WWF Attitude-01.png", + "description": "", + "loose_price": 7.99, + "rarity_pct": 36, + "rarity_label": "Uncommon" + }, + { + "id": 292, + "title": "WWF No Mercy", + "publisher": "THQ", + "release_date": "November 2000", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wwf-no-mercy", + "cart_code": "NWQ", + "cover_art_local": "coverart/WWF No Mercy-01.png", + "description": "", + "loose_price": 30.01, + "rarity_pct": 24, + "rarity_label": "Common" + }, + { + "id": 293, + "title": "WWF War Zone", + "publisher": "Acclaim", + "release_date": "August 1998", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "wwf-war-zone", + "cart_code": "NWY", + "cover_art_local": "coverart/WWF War Zone-01.png", + "description": "", + "loose_price": 7.98, + "rarity_pct": 8, + "rarity_label": "Extremely Common" + }, + { + "id": 294, + "title": "WWF WrestleMania 2000", + "publisher": "THQ", + "release_date": "November 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": true, + "completed": false, + "condition": null, + "slug": "wwf-wrestlemania-2000", + "cart_code": "NWV", + "cover_art_local": "coverart/WWF WrestleMania 2000-01.png", + "description": "", + "loose_price": 15.0, + "rarity_pct": 19, + "rarity_label": "Very Common" + }, + { + "id": 295, + "title": "Xena: Warrior Princess", + "publisher": "Titus", + "release_date": "December 1999", + "owned": false, + "has_case": false, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": null, + "slug": "xena-warrior-princess", + "cart_code": "", + "cover_art_local": "coverart/Xena_ Warrior Princess_ The Talisman of Fate-01.png", + "description": "", + "loose_price": 13.94, + "rarity_pct": null, + "rarity_label": null + }, + { + "id": 296, + "title": "Yoshi's Story", + "publisher": "Nintendo", + "release_date": "March 1998", + "owned": true, + "has_case": true, + "cleaned": false, + "battery_replaced": false, + "completed": false, + "condition": "4.0", + "slug": "yoshi-s-story", + "cart_code": "NYS", + "cover_art_local": "coverart/Yoshi_s Story-01.png", + "description": "Baby Bowser has taken the Super Happy Tree and cast a spell on Yoshi's world, turning it into the pages of a picture book. The only Yoshis not affected by the spell were six hatchlings that were still protected by their shells. It's up to them to reclaim the Super Happy Tree and restore happiness to the world. That is the only thing that can break Baby Bowser's spell!", + "loose_price": 26.63, + "rarity_pct": 20, + "rarity_label": "Very Common" + } +] \ No newline at end of file diff --git a/n64_dkoldies.csv b/n64_dkoldies.csv new file mode 100644 index 0000000..3ea7a17 --- /dev/null +++ b/n64_dkoldies.csv @@ -0,0 +1,1493 @@ +name,price,msrp,sku,url +Complete Stunt Racer - N64,1699.99,0,22319,https://www.dkoldies.com/complete-stunt-racer-n64/ +ClayFighter Sculptor's Cut - N64 Game,1599.99,0,38703,https://www.dkoldies.com/clayfighter-sculptors-cut-n64-game/ +Complete Bomberman 64 The Second Attack - N64,999.99,0,22379,https://www.dkoldies.com/complete-bomberman-64-the-second-attack-n64/ +Complete N64 System Jungle Green Bundle In Box,699.99,0,30899,https://www.dkoldies.com/n64-system-jungle-green-bundle-complete-in-box/ +WWF No Mercy (NUS-NW4E-USA-1) - N64 Game,499.99,0,45084,https://www.dkoldies.com/wwf-no-mercy-nus-nw43-1-n64-game/ +Not For Resale Excitebike 64 - N64 Game,499.99,0,37634,https://www.dkoldies.com/not-for-resale-excitebike-64-n64-game/ +Complete Conker's Bad Fur Day - N64 Game,449.99,499.99,22349,https://www.dkoldies.com/complete-conkers-bad-fur-day-n64/ +Stunt Racer - N64 Game,429.99,599.99,23968,https://www.dkoldies.com/stunt-racer-n64-game/ +Complete Pokemon Stadium 2 - N64,424.99,0,22286,https://www.dkoldies.com/complete-pokemon-stadium-2-n64/ +Complete N64 System in Box,424.99,0,31141,https://www.dkoldies.com/n64-system-complete-in-box/ +Super Bowling - N64 Game,399.99,0,28009,https://www.dkoldies.com/super-bowling-nintendo-64-game/ +Pokemon Pikachu N64 System Pak,399.99,0,31015,https://www.dkoldies.com/pokemon-pikachu-n64-system-pak/ +Not For Resale Mario Kart - N64 Game,399.99,0,41561,https://www.dkoldies.com/not-for-resale-mario-kart-n64-game/ +Complete Snowboard Kids - N64,399.99,0,22448,https://www.dkoldies.com/complete-snowboard-kids-n64/ +Complete Legend of Zelda Ocarina of Time Gold Collector's Edition - N64,399.99,0,37141,https://www.dkoldies.com/complete-legend-of-zelda-ocarina-of-time-gold-collectors-edition-n64/ +Complete Castlevania Legacy of Darkness - N64,399.99,0,22259,https://www.dkoldies.com/complete-castlevania-legacy-of-darkness-n64/ +Complete Star Soldier Vanishing Earth - N64,379.99,0,22433,https://www.dkoldies.com/complete-star-soldier-vanishing-earth-n64/ +Complete N64 System Star Wars Racer Set In Box,374.99,0,31142,https://www.dkoldies.com/complete-nintendo-64-system-star-wars-racer-set-in-box/ +Bomberman 64 The Second Attack - N64 Game,369.99,399.99,24028,https://www.dkoldies.com/bomberman-64-the-second-attack-n64-game/ +*FAN FAVORITE* N64 Explosion Pak,359.99,369.99,31146,https://www.dkoldies.com/fan-favorite-n64-explosion-pak/ +Complete Ogre Battle 64 - N64,349.99,0,22180,https://www.dkoldies.com/complete-ogre-battle-64-n64/ +Pokemon Pikachu Orange/Yellow N64 System Pak,349.99,0,49775,https://www.dkoldies.com/pokemon-pikachu-orange-yellow-n64-system-pak/ +Pokemon Pikachu Orange/Yellow N64 Console Only,349.99,0,49886,https://www.dkoldies.com/pokemon-pikachu-orange-yellow-n64-console-only/ +New Snowboard Kids - N64 Factory Sealed Game,349.99,0,39939,https://www.dkoldies.com/new-snowboard-kids-n64-factory-sealed-game/ +Not For Resale Pokemon Stadium - N64 Game,329.99,0,36721,https://www.dkoldies.com/not-for-resale-pokemon-stadium-n64-game/ +Complete Paper Mario - N64,329.99,0,22254,https://www.dkoldies.com/complete-paper-mario-n64/ +New Legend of Zelda Majora's Mask CE - N64 Factory Sealed Game,324.99,0,30965,https://www.dkoldies.com/new-legend-of-zelda-majoras-mask-ce-n64-factory-sealed-game/ +N64 Super Smash Kart Pak,319.99,329.99,31155,https://www.dkoldies.com/n64-super-smash-kart-pak/ +N64 Donkey Kong Pak,309.99,319.99,31145,https://www.dkoldies.com/n64-donkey-kong-pak/ +Worms Armageddon - N64 Game,309.99,0,24120,https://www.dkoldies.com/worms-armageddon-n64-game/ +*FAN FAVORITE* N64 Mario Zelda Pak,299.99,309.99,31150,https://www.dkoldies.com/n64-mario-zelda-pak/ +N64 Mario Kart Pak,299.99,309.99,31148,https://www.dkoldies.com/n64-mario-kart-pak/ +N64 Player Pak Clear Black / Clear,299.99,0,47607,https://www.dkoldies.com/n64-player-pak-clear-black-clear/ +Complete Starcraft 64 - N64,299.99,0,22175,https://www.dkoldies.com/complete-starcraft-64-n64/ +Complete Legend of Zelda Majora's Mask Hologram - Nintendo 64 Game,299.99,0,22193,https://www.dkoldies.com/complete-legend-of-zelda-majoras-mask-hologram-nintendo-64-game/ +Complete Kirby 64 The Crystal Shards - N64,299.99,0,22415,https://www.dkoldies.com/complete-kirby-64-the-crystal-shards-n64/ +Complete Harvest Moon 64 - N64,299.99,0,22386,https://www.dkoldies.com/complete-harvest-moon-64-n64/ +Complete Fighting Force 64 - N64,299.99,0,22314,https://www.dkoldies.com/complete-fighting-force-64-n64/ +Original Controller Donkey Kong Banana - Nintendo 64 (N64),299.99,0,46995,https://www.dkoldies.com/original-controller-donkey-kong-banana-nintendo-64-n64/ +N64 GoldenEye Pak,279.99,289.99,31005,https://www.dkoldies.com/n64-goldeneye-pak/ +Not For Resale Pokemon Stadium 2 - N64 Game,279.99,0,47165,https://www.dkoldies.com/not-for-resale-pokemon-stadium-2-n64-game/ +N64 Player Pak Watermelon Red,279.99,0,31006,https://www.dkoldies.com/n64-player-pak-watermelon-red/ +N64 Mario Sports Pak,279.99,0,31149,https://www.dkoldies.com/n64-mario-sports-pak/ +Conker's Bad Fur Day - N64 Game,274.99,329.99,23998,https://www.dkoldies.com/conkers-bad-fur-day-n64-game/ +N64 Player Pak Grape Purple,269.99,0,31011,https://www.dkoldies.com/nintendo-64-player-pak-grape-purple/ +N64 Player Pak Smoke,259.99,269.99,31007,https://www.dkoldies.com/n64-player-pak-smoke/ +N64 Player Pak Fire Orange,259.99,269.99,31014,https://www.dkoldies.com/nintendo-64-player-pak-fire-orange/ +N64 Pokemon Pak,254.99,264.99,31153,https://www.dkoldies.com/n64-pokemon-pak/ +N64 Daiei Hawks Edition Console Only,254.99,0,47605,https://www.dkoldies.com/n64-daiei-hawks-edition-console-only/ +Complete N64 System 2 Player In Box,254.99,0,31140,https://www.dkoldies.com/nintendo-64-system-2-player-complete-in-box/ +Not For Resale Super Mario 64 - N64 Game,249.99,0,31483,https://www.dkoldies.com/not-for-resale-super-mario-64-n64-game/ +Pokemon Pikachu N64 Console Only,249.99,0,45104,https://www.dkoldies.com/pokemon-pikachu-n64-console-only/ +Complete Pokemon Stadium - N64,249.99,0,22453,https://www.dkoldies.com/complete-pokemon-stadium-n64/ +Complete Mystical Ninja - N64,249.99,0,22428,https://www.dkoldies.com/complete-mystical-ninja-n64/ +Complete Mario Party 2 - N64,249.99,0,22235,https://www.dkoldies.com/complete-mario-party-2-n64/ +Complete Legend of Zelda Majora's Mask - N64,249.99,299.99,22419,https://www.dkoldies.com/complete-legend-of-zelda-majoras-mask-n64/ +N64 Star Fox/Wars Pak,239.99,249.99,31154,https://www.dkoldies.com/nintendo-64-star-fox-wars-pak/ +N64 Player Pak Ice Blue,239.99,0,31009,https://www.dkoldies.com/n64-player-pak-ice-blue/ +Complete Space Station Silicon Valley - N64,239.99,0,22321,https://www.dkoldies.com/complete-space-station-silicon-valley-n64/ +N64 Player Pak Jungle Green,234.99,244.99,31012,https://www.dkoldies.com/nintendo-64-player-pak-jungle-green/ +N64 Mario Blast From The Past HD Pak - Nintendo 64,229.99,239.99,45531,https://www.dkoldies.com/n64-blast-from-the-past-hd-pak-nintendo-64/ +Not For Resale Banjo Kazooie - N64 Game,229.99,0,39192,https://www.dkoldies.com/not-for-resale-banjo-kazooie-n64-game/ +Complete Mischief Makers - N64,229.99,279.99,22359,https://www.dkoldies.com/complete-mischief-makers-n64/ +Complete Fighter Destiny 2 - N64,229.99,0,22348,https://www.dkoldies.com/complete-fighter-destiny-2-n64/ +Castlevania Legacy of Darkness - N64 Game,229.99,249.99,23908,https://www.dkoldies.com/castlevania-legacy-of-darkness-n64-game/ +N64 Mario Pak,224.99,234.99,31147,https://www.dkoldies.com/n64-mario-pak/ +N64 Player Pak Clear Black / Clear - Acceptable,219.99,0,57127,https://www.dkoldies.com/n64-player-pak-clear-black-clear-acceptable/ +Complete Super Smash Bros. - N64,219.99,0,22281,https://www.dkoldies.com/complete-super-smash-bros-n64/ +Complete Mega Man 64 - N64,219.99,0,22355,https://www.dkoldies.com/complete-mega-man-64-n64/ +Complete Legend of Zelda Ocarina of Time - N64,219.99,249.99,22394,https://www.dkoldies.com/complete-legend-of-zelda-ocarina-of-time-n64/ +Complete Banjo Tooie - N64,219.99,0,22342,https://www.dkoldies.com/complete-banjo-tooie-n64/ +N64 Wrestling Pak,209.99,219.99,30901,https://www.dkoldies.com/nintendo-64-wrestling-pak/ +N64 Sports Pak,209.99,219.99,31139,https://www.dkoldies.com/n64-sports-pak/ +Complete Star Fox 64 with Rumble - N64,209.99,229.99,22426,https://www.dkoldies.com/complete-star-fox-64-with-rumble-n64/ +Complete Super Mario 64 - N64,202.99,0,22228,https://www.dkoldies.com/complete-super-mario-64-n64/ +Ogre Battle 64 - N64 Game,199.99,229.99,23829,https://www.dkoldies.com/ogre-battle-64-n64-game/ +N64 Player Pak Watermelon Red - Acceptable,199.99,0,46518,https://www.dkoldies.com/n64-player-pak-watermelon-red-discounted/ +N64 Player Pak Gold,199.99,239.99,31010,https://www.dkoldies.com/nintendo-64-player-pak-gold/ +N64 Player Pak Clear Red / Clear,199.99,239.99,45936,https://www.dkoldies.com/n64-player-pak-clear-red-clear/ +"Duck Dodgers, Looney Tunes - N64 Game",199.99,0,24072,https://www.dkoldies.com/duck-dodgers-looney-tunes-n64-game/ +Complete Starshot Space Circus Fever - N64,199.99,0,22173,https://www.dkoldies.com/complete-starshot-space-circus-fever-n64/ +Complete Mario Party 3 - N64,199.99,229.99,22427,https://www.dkoldies.com/complete-mario-party-3-n64/ +Complete Mario Party - N64,199.99,0,22411,https://www.dkoldies.com/complete-mario-party-n64/ +Complete Mario Kart 64 Player's Choice - N64,199.99,219.99,31405,https://www.dkoldies.com/complete-mario-kart-64-players-choice-n64/ +Complete Earthworm Jim 3D - N64,199.99,0,22178,https://www.dkoldies.com/complete-earthworm-jim-3d-n64/ +Complete Batman Beyond Return of Joker - N64,199.99,0,22437,https://www.dkoldies.com/complete-batman-beyond-return-of-joker-n64/ +Bomberman 64 The Second Attack - N64 Manual,194.99,0,29842,https://www.dkoldies.com/bomberman-64-the-second-attack-n64-manual/ +N64 Player Pak Clear Blue / Clear,189.99,234.99,45932,https://www.dkoldies.com/n64-player-pak-clear-blue-clear/ +Not For Resale Zelda Majora's Mask - N64 Game,189.99,0,36722,https://www.dkoldies.com/not-for-resale-zelda-majoras-mask-n64-game/ +Complete Resident Evil 2 - N64,189.99,0,22229,https://www.dkoldies.com/complete-resident-evil-2-n64/ +Complete Mario Kart 64 - N64,189.99,229.99,22400,https://www.dkoldies.com/complete-mario-kart-64-n64/ +Complete Legend of Zelda Ocarina of Time Player's Choice - N64,189.99,209.99,50099,https://www.dkoldies.com/complete-legend-of-zelda-ocarina-of-time-players-choice-n64/ +Complete Clay Fighter 63 1/3 - N64,189.99,0,22410,https://www.dkoldies.com/complete-clay-fighter-63-1-3-n64/ +N64 Player Pak Fire Orange - Acceptable,184.99,194.99,57158,https://www.dkoldies.com/n64-player-pak-fire-orange-acceptable/ +Complete Super Mario 64 Player's Choice - N64,184.99,0,31404,https://www.dkoldies.com/complete-super-mario-64-players-choice-n64/ +Complete Donkey Kong 64 CE- N64,181.99,0,41672,https://www.dkoldies.com/complete-donkey-kong-64-ce-n64/ +Not For Resale Zelda Ocarina of Time - N64 Game,180.99,0,41560,https://www.dkoldies.com/not-for-resale-zelda-ocarina-of-time-n64-game/ +Transformers Beast Wars Transmetals - N64 Game,179.99,0,23972,https://www.dkoldies.com/transformers-beast-wars-transmetals-n64-game/ +N64 Player Pak Smoke - Acceptable,179.99,0,47599,https://www.dkoldies.com/n64-player-pak-smoke-discounted/ +N64 Player Pak Grape Purple - Acceptable,179.99,0,46069,https://www.dkoldies.com/n64-player-pak-grape-purple-discounted/ +N64 Daiei Hawks Edition Console Only - Acceptable,179.99,0,57128,https://www.dkoldies.com/n64-daiei-hawks-edition-console-only-acceptable/ +Complete Turok 3 Shadow of Oblivion - N64,179.99,0,22457,https://www.dkoldies.com/complete-turok-3-shadow-of-oblivion-n64/ +Pokemon Pikachu N64 Console Only - Acceptable,174.99,0,57160,https://www.dkoldies.com/pokemon-pikachu-n64-console-only-acceptable/ +N64 Clear Blue / Clear Console Only,174.99,234.99,56433,https://www.dkoldies.com/n64-clear-blue-clear-console-only/ +Legend of Zelda Majora's Mask - N64 Game,169.99,0,24068,https://www.dkoldies.com/legend-of-zelda-majoras-mask-n64-game/ +NFL Blitz Special Edition 64 - N64 Game,169.99,0,24024,https://www.dkoldies.com/nfl-blitz-special-edition-64-n64-game/ +N64 Player Pak Ice Blue - Acceptable,169.99,0,47745,https://www.dkoldies.com/n64-player-pak-ice-blue-discounted/ +Complete Spider-Man - N64,169.99,0,22285,https://www.dkoldies.com/complete-spider-man-n64/ +Complete Quest 64 - N64,169.99,0,22283,https://www.dkoldies.com/complete-quest-64-n64/ +Conker's Bad Fur Day N64 - Empty N64 Box,169.99,0,17319,https://www.dkoldies.com/conkers-bad-fur-day-n64-empty-n64-box/ +Pokemon Stadium 2 - Empty N64 Box,164.99,0,17257,https://www.dkoldies.com/pokemon-stadium-2-empty-n64-box/ +*MOST POPULAR* N64 2 Player Pak,159.99,169.99,31138,https://www.dkoldies.com/most-popular-n64-2-player-pak/ +Mystical Ninja - N64 Game,159.99,0,24077,https://www.dkoldies.com/mystical-ninja-n64-game/ +N64 Player Pak Jungle Green - Acceptable,159.99,0,46113,https://www.dkoldies.com/n64-player-pak-jungle-green-discounted/ +Goemon's Great Adventure - N64 Game,159.99,0,23820,https://www.dkoldies.com/goemons-great-adventure-n64-game/ +Complete Rocket Robot on Wheels - N64,159.99,0,22434,https://www.dkoldies.com/complete-rocket-robot-on-wheels-n64/ +Complete Banjo Kazooie - N64,159.99,179.99,22339,https://www.dkoldies.com/complete-banjo-kazooie-n64/ +Big Mountain 2000 64 - N64 Game,155.99,0,24020,https://www.dkoldies.com/big-mountain-2000-64-n64-game/ +Legend of Zelda Ocarina of Time Gold Collector's Edition - N64 Game,149.99,0,24121,https://www.dkoldies.com/legend-of-zelda-ocarina-of-time-gold-collector-s-edition-n64-game/ +PGA European Tour 64 - N64 Game,149.99,209.99,24034,https://www.dkoldies.com/pga-european-tour-64-n64-game/ +Not For Resale Mario Party 3 - N64 Game,149.99,0,47269,https://www.dkoldies.com/not-for-resale-mario-party-3-n64-game/ +International Superstar Soccer 2000 - N64 Game,149.99,0,36724,https://www.dkoldies.com/international-superstar-soccer-2000-n64-game/ +Complete Yoshi's Story - N64,149.99,0,22353,https://www.dkoldies.com/complete-yoshis-story-n64/ +Complete San Francisco Rush 2049 - N64,149.99,0,49279,https://www.dkoldies.com/complete-san-francisco-rush-2049-n64/ +Complete Rampage World Tour - N64,149.99,0,22343,https://www.dkoldies.com/complete-rampage-world-tour-n64/ +Complete Pokemon Snap - N64,149.99,214.99,22245,https://www.dkoldies.com/complete-pokemon-snap-n64/ +Complete International Superstar Soccer 2000 - N64,149.99,0,22465,https://www.dkoldies.com/complete-international-superstar-soccer-2000-n64/ +"Complete Hey You, Pikachu! - N64",149.99,0,22256,https://www.dkoldies.com/complete-hey-you-pikachu-n64/ +Complete Duke Nukem 64 - N64,149.99,0,22380,https://www.dkoldies.com/complete-duke-nukem-64-n64/ +Complete Dr Mario 64 - N64,149.99,0,22338,https://www.dkoldies.com/complete-dr-mario-64-n64/ +Complete Donkey Kong 64 - N64,149.99,0,22278,https://www.dkoldies.com/complete-donkey-kong-64-n64/ +Earthworm Jim 3D N64 - Empty N64 Box,149.99,0,17149,https://www.dkoldies.com/earthworm-jim-3d-n64-empty-n64-box/ +N64 Player Pak,144.99,154.99,31151,https://www.dkoldies.com/n64-player-pak/ +Complete Bomberman 64 (Bomber Man) - N64,144.99,0,22299,https://www.dkoldies.com/complete-bomberman-64-bomber-man-n64/ +Complete 007 GoldenEye Player's Choice - N64,144.99,0,22207,https://www.dkoldies.com/complete-007-goldeneye-pc-n64/ +Pokemon Stadium 2 - N64 Game,139.99,149.99,23935,https://www.dkoldies.com/pokemon-stadium-2-n64-game/ +Paper Mario - N64 Game,139.99,149.99,23903,https://www.dkoldies.com/paper-mario-n64-game/ +N64 Player Pak Clear Red / Clear - Acceptable,139.99,149.99,57159,https://www.dkoldies.com/n64-player-pak-clear-red-clear-acceptable/ +Complete Star Fox 64 Player's Choice - N64,139.99,0,49038,https://www.dkoldies.com/complete-star-fox-64-players-choice-n64/ +Complete Mario Golf - N64,139.99,0,22416,https://www.dkoldies.com/complete-mario-golf-n64/ +Complete Gauntlet Legends - N64,139.99,189.99,22327,https://www.dkoldies.com/complete-gauntlet-legends-n64/ +Complete Diddy Kong Racing - N64,139.99,0,18843,https://www.dkoldies.com/complete-diddy-kong-racing-n64/ +Complete Carmageddon 64 - N64,139.99,0,22354,https://www.dkoldies.com/complete-carmageddon-64-n64/ +Complete Bomberman Hero - N64,139.99,0,22217,https://www.dkoldies.com/complete-bomberman-hero-n64/ +Complete Indiana Jones Internal Machine - N64,137.99,0,22277,https://www.dkoldies.com/complete-indiana-jones-internal-machine-n64/ +Snowboard Kids 2 - N64 Game,129.99,0,24051,https://www.dkoldies.com/snowboard-kids-2-n64-game/ +N64 Player Pak Gold - Acceptable,129.99,0,47598,https://www.dkoldies.com/n64-player-pak-gold-discounted/ +Indiana Jones and the Infernal Machine - N64 Game,129.99,145.99,23926,https://www.dkoldies.com/indiana-jones-and-the-infernal-machine-n64-game/ +Complete Mortal Kombat Mythologies Sub-Zero - N64,129.99,0,22361,https://www.dkoldies.com/complete-mortal-kombat-mythologies-sub-zero-n64/ +Complete F-Zero X (FZero) - N64,129.99,0,22350,https://www.dkoldies.com/complete-f-zero-x-fzero-n64/ +Complete DOOM 64 - N64,129.99,0,22431,https://www.dkoldies.com/complete-doom-64-n64/ +Legend of Zelda Majora's Mask Collector's Edition - Empty N64 Box,129.99,0,17164,https://www.dkoldies.com/legend-of-zelda-majoras-mask-collectors-edition-empty-n64-box/ +Stunt Racer - N64 Manual,124.99,0,29782,https://www.dkoldies.com/stunt-racer-n64-manual/ +N64 Console Only,119.99,0,31144,https://www.dkoldies.com/nintendo-64-console-only/ +Daikatana - N64 Game,119.99,199.99,23944,https://www.dkoldies.com/daikatana-n64-game/ +Resident Evil 2 - N64 Game,119.99,129.99,23878,https://www.dkoldies.com/resident-evil-2-n64-game/ +N64 Clear Blue / Clear Console Only - Acceptable,119.99,0,56434,https://www.dkoldies.com/n64-clear-blue-clear-console-only-acceptable/ +Earthworm Jim 3D - N64 Game,119.99,0,23827,https://www.dkoldies.com/earthworm-jim-3d-n64-game/ +Complete Vigilante 8 - N64,119.99,0,22439,https://www.dkoldies.com/complete-vigilante-8-n64/ +Complete Road Rash 64 - N64,119.99,0,22332,https://www.dkoldies.com/complete-road-rash-64-n64/ +Complete Cruis'n World - N64,119.99,139.99,22396,https://www.dkoldies.com/complete-cruisn-world-n64/ +Complete Buck Bumble - N64,119.99,0,22436,https://www.dkoldies.com/complete-buck-bumble-n64/ +Complete Battle Zone Rise of The Black Dogs 64 - N64,119.99,0,22387,https://www.dkoldies.com/complete-battle-zone-rise-of-the-black-dogs-64-n64/ +Paper Mario N64 - Empty N64 Box,119.99,0,17225,https://www.dkoldies.com/paper-mario-n64-empty-n64-box/ +Complete Original Green Controller - N64,119.99,0,36922,https://www.dkoldies.com/complete-green-controller-n64/ +Complete Expansion Pak - N64,119.99,0,21476,https://www.dkoldies.com/complete-expansion-pak-n64/ +Harvest Moon 64 - N64 Game,114.99,124.99,24035,https://www.dkoldies.com/harvest-moon-64-n64-game/ +Super Smash Bros. N64 - Empty N64 Box,114.99,0,17252,https://www.dkoldies.com/super-smash-bros-n64-empty-n64-box/ +Ogre Battle - Prima Strategy Guide,114.99,0,30892,https://www.dkoldies.com/strategy-guide-ogre-battle-prima-n64-nintendo-64/ +StarCraft 64 - N64 Game,112.99,0,23824,https://www.dkoldies.com/starcraft-64-n64-game/ +N64 Player Pak - Acceptable,109.99,119.99,31152,https://www.dkoldies.com/n64-player-pak-acceptable/ +Mega Man 64 - N64 Game,109.99,0,24004,https://www.dkoldies.com/mega-man-64-n64-game/ +Complete Worms Armageddon - N64,109.99,0,22471,https://www.dkoldies.com/complete-worms-armageddon-n64/ +Complete WWF No Mercy - N64,109.99,149.99,22451,https://www.dkoldies.com/complete-wwf-no-mercy-n64/ +Complete South Park - N64,109.99,119.99,22310,https://www.dkoldies.com/complete-south-park-n64/ +Complete Blast Corps - N64,109.99,119.99,22269,https://www.dkoldies.com/complete-blast-corps-n64/ +Complete 007 GoldenEye (James Bond) - N64,109.99,159.99,18847,https://www.dkoldies.com/complete-007-goldeneye-james-bond-n64/ +Conker's Bad Fur Day - N64 Manual,109.99,124.99,29812,https://www.dkoldies.com/conkers-bad-fur-day-n64-manual/ +Complete Original Yellow Controller - N64,109.99,0,37513,https://www.dkoldies.com/complete-original-yellow-controller-n64/ +Complete Original Red Controller - N64,109.99,0,36923,https://www.dkoldies.com/complete-original-red-controller-n64/ +Complete Original Grey Controller - N64,109.99,0,37593,https://www.dkoldies.com/complete-original-grey-controller-n64/ +Complete Original Blue Controller - N64,109.99,0,37512,https://www.dkoldies.com/complete-original-blue-controller-n64/ +Complete Original Black Controller - N64,109.99,0,37514,https://www.dkoldies.com/complete-original-black-controller-n64/ +Mario Party 3 - N64 Game,104.99,109.99,24076,https://www.dkoldies.com/mario-party-3-n64-game/ +Not For Resale Star Fox 64 - N64 Game,104.99,0,39193,https://www.dkoldies.com/not-for-resale-star-fox-64-n64-game/ +Complete Star Wars Battle for Naboo Episode 1 - N64,104.99,0,22267,https://www.dkoldies.com/complete-star-wars-battle-for-naboo-episode-1-n64/ +Complete Aidyn Chronicles The First Mage - N64,104.99,0,22250,https://www.dkoldies.com/complete-aidyn-chronicles-the-first-mage-n64/ +Mario Party 2 N64 - Empty N64 Box,104.99,0,17206,https://www.dkoldies.com/mario-party-2-n64-empty-n64-box/ +Snowboard Kids - N64 Game,99.99,114.99,24097,https://www.dkoldies.com/snowboard-kids-n64-game/ +Tony Hawk's Pro Skater 3 - N64 Game,99.99,109.99,24111,https://www.dkoldies.com/tony-hawks-pro-skater-3-n64-game/ +N64 Player Pak Clear Blue / Clear - Acceptable,99.99,119.99,46112,https://www.dkoldies.com/n64-player-pak-clear-blue-clear-discounted/ +Starshot Space Circus Fever - N64 Game,99.99,104.99,23822,https://www.dkoldies.com/starshot-space-circus-fever-n64-game/ +Rocket Robot on Wheels - N64 Game,99.99,0,24083,https://www.dkoldies.com/rocket-robot-on-wheels-n64-game/ +New WWF Wrestlemania 2000 - N64 Factory Sealed Game,99.99,0,37757,https://www.dkoldies.com/wwf-wrestlemania-2000-n64-factory-sealed-game/ +Donald Duck Goin' Quackers - N64 Game,99.99,0,24084,https://www.dkoldies.com/donald-duck-goin-quackers-n64-game/ +Complete Vigilante 8 2nd Offense - N64,99.99,0,22331,https://www.dkoldies.com/complete-vigilante-8-2nd-offense-n64/ +Complete Turok Dinosaur Hunter Players Choice - N64,99.99,0,50631,https://www.dkoldies.com/complete-turok-dinosaur-hunter-players-choice-n64/ +Complete Polaris SnoCross - N64,99.99,0,22408,https://www.dkoldies.com/complete-polaris-snocross-n64/ +Complete Mortal Kombat Trilogy - N64,99.99,0,22449,https://www.dkoldies.com/complete-mortal-kombat-trilogy-n64/ +Complete Mortal Kombat 4 - N64,99.99,0,22424,https://www.dkoldies.com/complete-mortal-kombat-4-n64/ +Complete Mission Impossible - N64,99.99,0,22197,https://www.dkoldies.com/complete-mission-impossible-n64/ +Complete Mario Tennis - N64,99.99,0,22279,https://www.dkoldies.com/complete-mario-tennis-n64/ +Complete Killer Instinct Gold - N64,99.99,0,22300,https://www.dkoldies.com/complete-killer-instinct-gold-n64/ +Complete Glover - N64,99.99,134.99,22454,https://www.dkoldies.com/complete-glover-n64/ +Complete Gex 64 Enter The Gecko - N64,99.99,0,22230,https://www.dkoldies.com/complete-gex-64-enter-the-gecko-n64/ +Complete Cruis'n Exotica - N64,99.99,0,22224,https://www.dkoldies.com/complete-cruisn-exotica-n64/ +Complete Chameleon Twist 2 - N64,99.99,0,22440,https://www.dkoldies.com/complete-chameleon-twist-2-n64/ +Complete Chameleon Twist - N64,99.99,0,22432,https://www.dkoldies.com/complete-chameleon-twist-n64/ +Complete Castlevania - N64,99.99,0,22258,https://www.dkoldies.com/complete-castlevania-n64/ +Complete Blues Brothers 2000 - N64,99.99,119.99,22458,https://www.dkoldies.com/complete-blues-brothers-2000-n64/ +NFL Blitz Special Edition 64 - N64 Manual,99.99,0,29838,https://www.dkoldies.com/nfl-blitz-special-edition-64-n64-manual/ +Mario Party 3 N64 - Empty N64 Box,99.99,0,17397,https://www.dkoldies.com/mario-party-3-n64-empty-n64-box/ +Mario Kart 64 - Empty N64 Box,99.99,0,17370,https://www.dkoldies.com/mario-kart-64-empty-n64-box/ +Gauntlet Legends N64 - Empty N64 Box,97.99,0,17297,https://www.dkoldies.com/gauntlet-legends-n64-empty-n64-box/ +Gauntlet Legends - N64 Game,94.99,99.99,23976,https://www.dkoldies.com/gauntlet-legends-n64-game/ +Mischief Makers - N64 Game,94.99,0,24008,https://www.dkoldies.com/mischief-makers-n64-game/ +Complete Pilot Wings 64 - N64,94.99,0,22352,https://www.dkoldies.com/complete-pilot-wings-64-n64/ +Mystical Ninja - N64 Manual,94.99,0,29891,https://www.dkoldies.com/mystical-ninja-n64-manual/ +Carmageddon 64 - N64 Game,92.99,110.99,24003,https://www.dkoldies.com/carmageddon-64-n64-game/ +Mario Party 2 - N64 Game,89.99,0,23884,https://www.dkoldies.com/mario-party-2-n64-game/ +N64 Console Only - Acceptable,89.99,0,31143,https://www.dkoldies.com/n64-console-only-discounted/ +Ogre Battle 64 - N64 Manual,89.99,132.99,29644,https://www.dkoldies.com/ogre-battle-64-n64-manual/ +New WWF No Mercy - N64 Factory Sealed Game,89.99,0,37758,https://www.dkoldies.com/wwf-no-mercy-n64-factory-sealed-game/ +Complete Tom and Jerry In Fists Of Fury 64 - N64,89.99,0,22378,https://www.dkoldies.com/complete-tom-and-jerry-in-fists-of-fury-64-n64/ +"Complete Shadowgate 64, Trails of The four Towers - N64",89.99,0,22174,https://www.dkoldies.com/complete-shadowgate-64-trails-of-the-four-towers-n64/ +Complete Shadow Man - N64,89.99,0,22211,https://www.dkoldies.com/complete-shadow-man-n64/ +Complete San Francisco Rush Extreme Racing - N64,89.99,0,22420,https://www.dkoldies.com/complete-san-francisco-rush-extreme-racing-n64/ +Complete Looney Tunes Daffy Duck Dodgers - N64,89.99,0,22423,https://www.dkoldies.com/complete-looney-tunes-daffy-duck-dodgers-n64/ +Complete Charlie Blast's Territory - N64,89.99,0,22294,https://www.dkoldies.com/complete-charlie-blasts-territory-n64/ +Wireless 2 Player DOCS Nintendo 64 Controller - N64,89.99,0,40019,https://www.dkoldies.com/wireless-2-player-docs-nintendo-64-controller-n64/ +Super Mario 64 Players Choice - Empty N64 Box,89.99,0,37142,https://www.dkoldies.com/super-mario-64-players-choice-empty-n64-box/ +Space Station Silicon Valley N64 - Empty N64 Box,89.99,0,17291,https://www.dkoldies.com/space-station-silicon-valley-n64-empty-n64-box/ +Snowboard Kids N64 - Empty N64 Box,89.99,0,17418,https://www.dkoldies.com/snowboard-kids-n64-empty-n64-box/ +Mario Party - Empty N64 Box,89.99,104.99,17381,https://www.dkoldies.com/mario-party-empty-n64-box/ +Mario Golf N64 - Empty N64 Box,89.99,0,17386,https://www.dkoldies.com/mario-golf-n64-empty-n64-box/ +Legend of Zelda Majora's Mask N64 - Empty N64 Box,89.99,0,17389,https://www.dkoldies.com/legend-of-zelda-majoras-mask-n64-empty-n64-box/ +Kirby 64 The Crystal Shards N64 - Empty N64 Box,89.99,0,17385,https://www.dkoldies.com/kirby-64-the-crystal-shards-n64-empty-n64-box/ +Turok 3 Shadow of Oblivion N64 - Empty N64 Box,85.99,0,17427,https://www.dkoldies.com/turok-3-shadow-of-oblivion-n64-empty-n64-box/ +Rat Attack - N64 Game,84.99,0,23886,https://www.dkoldies.com/rat-attack-n64-game/ +Hydro Thunder - N64 Game,84.99,0,24040,https://www.dkoldies.com/hydro-thunder-n64-game/ +Complete NFL Blitz 2001 - N64,84.99,0,22346,https://www.dkoldies.com/complete-nfl-blitz-2001-n64/ +Complete Monster Truck Madness - N64,84.99,0,22297,https://www.dkoldies.com/complete-monster-truck-madness-n64/ +Complete California Speed - N64,84.99,0,22172,https://www.dkoldies.com/complete-california-speed-n64/ +Castlevania Legacy of Darkness - N64 Manual,84.99,0,29723,https://www.dkoldies.com/castlevania-legacy-of-darkness-n64-manual/ +007 GoldenEye (James Bond) - Empty N64 Box,83.99,0,17178,https://www.dkoldies.com/007-goldeneye-james-bond-empty-n64-box/ +Legend of Zelda Ocarina of Time - Empty N64 Box,82.99,0,17364,https://www.dkoldies.com/legend-of-zelda-ocarina-of-time-empty-n64-box/ +F-Zero X (FZero) N64 - Empty N64 Box,80.99,0,17320,https://www.dkoldies.com/f-zero-x-n64-empty-n64-box/ +Banjo Kazooie N64 - Empty N64 Box,80.99,0,17309,https://www.dkoldies.com/banjo-kazooie-n64-empty-n64-box/ +Super Smash Bros. - N64 Game,79.99,89.99,23930,https://www.dkoldies.com/super-smash-bros-n64-game/ +Mario Party - N64 Game,79.99,0,24060,https://www.dkoldies.com/mario-party-n64-game/ +Space Station Silicon Valley - N64 Game,79.99,0,23970,https://www.dkoldies.com/space-station-silicon-valley-n64-game/ +Not For Resale Mario Tennis - N64 Game,79.99,99.99,47888,https://www.dkoldies.com/not-for-resale-mario-tennis-n64-game/ +Complete Wrestlemania 2000 - N64,79.99,0,22464,https://www.dkoldies.com/complete-wrestlemania-2000-n64/ +Complete Turok Rage Wars - N64,79.99,0,19093,https://www.dkoldies.com/complete-turok-rage-wars-nintendo-n64/ +Complete Turok Dinosaur Hunter - N64,79.99,0,22257,https://www.dkoldies.com/complete-turok-dinosaur-hunter-n64/ +Complete Star Wars Shadows of The Empire - N64,79.99,89.99,18844,https://www.dkoldies.com/complete-star-wars-shadows-of-the-empire-nintendo-n64/ +Complete NHL Blades of Steel '99 - N64,79.99,0,22340,https://www.dkoldies.com/complete-nhl-blades-of-steel-99-n64/ +Complete NFL Blitz 2000 - N64,79.99,0,22345,https://www.dkoldies.com/complete-nfl-blitz-2000-n64/ +"Complete Hey You, Pikachu! with Microphone - Nintendo N64",79.99,0,21477,https://www.dkoldies.com/complete-hey-you-pikachu-with-microphone-nintendo-n64/ +Complete Battletanx Global Assault (Battle Tanx) - N64,79.99,0,22425,https://www.dkoldies.com/complete-battletanx-global-assault-battle-tanx-n64/ +Complete Army Men Sarge's Heroes 2 - N64,79.99,0,22455,https://www.dkoldies.com/complete-army-men-sarges-heroes-2-n64/ +Chameleon Twist 2 - N64 Game,79.99,89.99,24089,https://www.dkoldies.com/chameleon-twist-2-n64-game/ +Zelda Majora's Mask - Collector's Edition Prima Strategy Guide,79.99,0,57012,https://www.dkoldies.com/zelda-majoras-mask-collectors-edition-prima-strategy-guide/ +Super Mario 64 N64 - Empty N64 Box,79.99,0,17199,https://www.dkoldies.com/super-mario-64-n64-empty-n64-box/ +Star Fox 64 - Empty N64 Box with Insert,79.99,0,17396,https://www.dkoldies.com/star-fox-64-empty-n64-box-with-insert/ +Pokemon Stadium N64 - Empty N64 Box and Insert,79.99,0,17423,https://www.dkoldies.com/pokemon-stadium-n64-empty-n64-box-and-insert/ +Original Controller Pikachu Orange - Nintendo 64 (N64),79.99,0,41822,https://www.dkoldies.com/original-controller-pokemon-orange-nintendo-64-n64/ +Banjo Tooie N64 - Empty N64 Box,79.99,0,17312,https://www.dkoldies.com/banjo-tooie-n64-empty-n64-box/ +Ascii Fishing Rod Controller - Nintendo 64 (N64),79.99,0,54309,https://www.dkoldies.com/ascii-fishing-rod-controller-nintendo-64-n64/ +Legend of Zelda Ocarina of Time - N64 Game,76.99,79.99,24043,https://www.dkoldies.com/legend-of-zelda-ocarina-of-time-n64-game/ +Mario Kart 64 - N64 Game,74.99,79.99,24049,https://www.dkoldies.com/mario-kart-64-n64-game/ +Complete Nightmare Creatures - N64,74.99,0,22290,https://www.dkoldies.com/complete-nightmare-creatures-n64/ +"Complete New Tetris, The - N64",74.99,0,22236,https://www.dkoldies.com/complete-new-tetris-the-n64/ +Complete NFL Blitz - N64,74.99,0,22337,https://www.dkoldies.com/complete-nfl-blitz-n64/ +Complete Elmo's Letter Adventure - N64,74.99,0,22450,https://www.dkoldies.com/complete-elmos-letter-adventure-n64/ +Complete Beetle Adventure Racing - N64,74.99,109.99,22384,https://www.dkoldies.com/complete-beetle-adventure-racing-n64/ +Reality Quest The Glove - N64 Controller,74.99,0,36909,https://www.dkoldies.com/reality-quest-the-glove-n64-controller/ +Mischief Makers N64 - Empty N64 Box,74.99,0,17329,https://www.dkoldies.com/mischief-makers-n64-empty-n64-box/ +Mario Kart 64 Player's Choice - Empty N64 Box,74.99,0,36993,https://www.dkoldies.com/mario-kart-64-players-choice-empty-n64-box/ +Bomberman 64 (Bomber Man) N64 - Empty N64 Box,74.99,0,17269,https://www.dkoldies.com/bomberman-64-bomber-man-n64-empty-n64-box/ +Super Mario 64 - N64 Game,69.99,0,23877,https://www.dkoldies.com/super-mario-64-n64-game/ +Mario Golf - N64 Game,69.99,74.99,24065,https://www.dkoldies.com/mario-golf-n64-game/ +Castlevania - N64 Game,69.99,0,23907,https://www.dkoldies.com/castlevania-n64-game/ +Star Wars Episode 1 Battle for Naboo - N64 Game,69.99,0,23916,https://www.dkoldies.com/star-wars-battle-for-naboo-episode-1-n64-game/ +Original Expansion Pak - Nintendo 64 (N64),69.99,74.99,55299,https://www.dkoldies.com/original-expansion-pak-nintendo-64-n64/ +Not For Resale Star Wars Racer Episode 1 - N64 Game,69.99,0,37075,https://www.dkoldies.com/not-for-resale-star-wars-episode-1-racer-n64-game/ +Complete Wave Race 64 - N64,69.99,0,22215,https://www.dkoldies.com/complete-wave-race-64-n64/ +Complete Transformers Beast Wars Transmetals - N64,69.99,0,22323,https://www.dkoldies.com/complete-transformers-beast-wars-transmetals-n64/ +Complete Tony Hawk's Pro Skater - N64,69.99,74.99,22233,https://www.dkoldies.com/complete-tony-hawks-pro-skater-n64/ +Complete Star Wars Rogue Squadron - N64,69.99,79.99,19088,https://www.dkoldies.com/complete-star-wars-rogue-squadron-n64/ +Complete Snowboard Kids 2 - N64,69.99,0,22402,https://www.dkoldies.com/complete-snowboard-kids-2-n64/ +Complete Perfect Dark - N64,69.99,0,22452,https://www.dkoldies.com/complete-perfect-dark-n64/ +Complete NBA Hang Time - N64,69.99,0,22409,https://www.dkoldies.com/complete-nba-hang-time-n64/ +Complete Mickey's Speedway USA - N64,69.99,0,22302,https://www.dkoldies.com/complete-mickeys-speedway-usa-n64/ +Complete International Track & Field 2000 - N64,69.99,0,22467,https://www.dkoldies.com/complete-international-track-field-2000-n64/ +Complete Cruis'n USA - N64,69.99,0,22198,https://www.dkoldies.com/complete-cruisn-usa-n64/ +Complete Army Men Sarge's Heroes - N64,69.99,0,22318,https://www.dkoldies.com/complete-army-men-sarges-heroes-n64/ +Paper Mario - Official Nintendo Player's Guide,69.99,0,30882,https://www.dkoldies.com/players-guide-paper-mario-official-nintendo-64/ +Original Pikachu Blue on Yellow Controller - Nintendo 64 (N64),69.99,0,48575,https://www.dkoldies.com/original-pikachu-blue-on-yellow-controller-nintendo-64-n64/ +Original Controller Watermelon Clear Red - Nintendo 64 (N64),69.99,0,22513,https://www.dkoldies.com/original-controller-clear-red-nintendo-64-n64/ +Original Controller Pokemon Blue - Nintendo 64 (N64),69.99,0,36908,https://www.dkoldies.com/original-controller-pokemon-nintendo-64-n64/ +Original Controller Gold - Nintendo 64 (N64),69.99,0,22521,https://www.dkoldies.com/original-controller-gold-nintendo-64-n64/ +Original Controller Fire Clear Orange - Nintendo 64 (N64),69.99,0,22516,https://www.dkoldies.com/original-controller-clear-orange-nintendo-64-n64/ +Original Controller Extreme Green - Nintendo 64 (N64),69.99,0,22532,https://www.dkoldies.com/original-controller-extreme-green-nintendo-64-n64/ +Hydro Thunder N64 - Empty N64 Box,69.99,0,17361,https://www.dkoldies.com/hydro-thunder-n64-empty-n64-box/ +Donkey Kong 64 - Empty N64 Box,69.99,0,17249,https://www.dkoldies.com/donkey-kong-64-empty-n64-box/ +"Complete Bug's life, Disney's A - N64",67.99,74.99,22196,https://www.dkoldies.com/complete-bugs-life-disneys-a-n64/ +Harvest Moon 64 N64 - Empty N64 Box,67.99,0,17356,https://www.dkoldies.com/harvest-moon-64-n64-empty-n64-box/ +DOOM 64 - N64 Game,66.99,79.99,24080,https://www.dkoldies.com/doom-64-n64-game/ +Complete Armorines Project SWARM - N64,66.99,0,22459,https://www.dkoldies.com/complete-armorines-project-swarm-n64/ +Donkey Kong 64 - N64 Game,64.99,69.99,23927,https://www.dkoldies.com/donkey-kong-64-n64-game/ +Rampage 2 Universal Tour - N64 Game,64.99,0,24092,https://www.dkoldies.com/rampage-2-universal-tour-n64-game/ +Turok 3 Shadow of Oblivion - N64 Game,64.99,69.99,24106,https://www.dkoldies.com/turok-3-shadow-of-oblivion-n64-game/ +Complete WCW/NWO Revenge - N64 Game,64.99,0,22260,https://www.dkoldies.com/complete-wcw-nwo-revenge-n64/ +007 GoldenEye (James Bond) Players Choice N64 - Empty N64 Box,64.99,0,36994,https://www.dkoldies.com/007-goldeneye-james-bond-players-choice-n64-empty-n64-box/ +Star Soldier Vanishing Earth - N64 Game,63.99,0,24082,https://www.dkoldies.com/star-soldier-vanishing-earth-n64-game/ +Banjo Kazooie - N64 Game,62.99,67.99,23988,https://www.dkoldies.com/banjo-kazooie-n64-game/ +Kirby 64 The Crystal Shards - N64 Game,62.99,79.99,24064,https://www.dkoldies.com/kirby-64-the-crystal-shards-n64-game/ +Buck Bumble - N64 Game,61.99,0,24085,https://www.dkoldies.com/buck-bumble-n64-game/ +Pokemon Stadium - N64 Game,59.99,0,24102,https://www.dkoldies.com/pokemon-stadium-n64-game/ +Banjo Tooie - N64 Game,59.99,64.99,23991,https://www.dkoldies.com/banjo-tooie-n64-game/ +Rampage World Tour - N64 Game,59.99,66.99,23992,https://www.dkoldies.com/rampage-world-tour-n64-game/ +Road Rash 64 - N64 Game*,59.99,84.99,23981,https://www.dkoldies.com/road-rash-64-n64-game/ +F-Zero X (FZero) - N64 Game,59.99,0,23999,https://www.dkoldies.com/f-zero-x-fzero-n64-game/ +Hybrid Heaven - N64 Game,59.99,0,24110,https://www.dkoldies.com/hybrid-heaven-n64-game/ +Spider-Man - N64 Game,59.99,0,23934,https://www.dkoldies.com/spider-man-n64-game/ +Cruis'n Exotica - N64 Game,59.99,69.99,23873,https://www.dkoldies.com/cruisn-exotica-n64-game/ +Chameleon Twist - N64 Game,59.99,0,24081,https://www.dkoldies.com/chameleon-twist-n64-game/ +Shadowgate 64 Trails of the Four Towers - N64 Game,59.99,0,23823,https://www.dkoldies.com/shadowgate-64-trails-of-the-four-towers-n64-game/ +Complete WinBack Covert Operations - N64,59.99,0,22357,https://www.dkoldies.com/complete-winback-covert-operations-n64/ +Complete WCW vs. NWO World Tour - N64 Game,59.99,0,22208,https://www.dkoldies.com/complete-wcw-vs-nwo-world-tour-n64/ +Complete Turok 2 Seeds of Evil - N64,59.99,0,22239,https://www.dkoldies.com/complete-turok-2-seeds-of-evil-n64/ +"Complete Toy Story 2, Disney's - N64",59.99,0,22263,https://www.dkoldies.com/complete-toy-story-2-disneys-n64/ +Complete Tetrisphere - N64,59.99,0,22223,https://www.dkoldies.com/complete-tetrisphere-n64/ +Complete Superman - N64,59.99,0,22268,https://www.dkoldies.com/complete-superman-n64/ +Complete Rugrats Scavenger Hunt - N64,59.99,0,22308,https://www.dkoldies.com/complete-rugrats-scavenger-hunt-n64/ +Complete Robotron 64 - N64,59.99,0,22362,https://www.dkoldies.com/complete-robotron-64-n64/ +Complete Fighters Destiny - N64,59.99,0,22238,https://www.dkoldies.com/complete-fighters-destiny-n64/ +Complete All Star Tennis 99 - N64,59.99,0,22252,https://www.dkoldies.com/complete-all-star-tennis-99-n64/ +Retro Fighters Brawler 64 Wireless Controller Smoke - N64,59.99,0,50723,https://www.dkoldies.com/retro-fighters-brawler-64-wireless-controller-smoke-n64/ +Zelda Ocarina of Time N64 - Official Nintendo Player's Guide,59.99,59.99,30881,https://www.dkoldies.com/players-guide-zelda-ocarina-of-time-n64-official-nintendo-64/ +Yoshi's Story N64 - Empty N64 Box,59.99,69.99,17323,https://www.dkoldies.com/yoshis-story-n64-empty-n64-box/ +V3 Interact Steering Wheel - Nintendo 64 (N64),59.99,0,22518,https://www.dkoldies.com/v3-interact-steering-wheel-nintendo-64-n64/ +Star Fox 64 - Empty N64 Box,59.99,0,36981,https://www.dkoldies.com/star-fox-64-empty-n64-box/ +Retro Fighters Brawler 64 Wireless Controller Grey - N64,59.99,0,47836,https://www.dkoldies.com/retro-fighters-brawler-64-wireless-controller-grey-n64/ +Retro Fighters Brawler 64 Wireless Controller Clear Green - N64,59.99,0,47882,https://www.dkoldies.com/retro-fighters-brawler-64-wireless-controller-clear-green-n64/ +Resident Evil 2 N64 - Empty N64 Box,59.99,0,17200,https://www.dkoldies.com/resident-evil-2-n64-empty-n64-box/ +Rampage World Tour N64 - Empty N64 Box,59.99,64.99,17313,https://www.dkoldies.com/rampage-world-tour-n64-empty-n64-box/ +Paper Mario - N64 Manual,59.99,0,29718,https://www.dkoldies.com/paper-mario-n64-manual/ +Original Controller Smoke Clear Black - Nintendo 64 (N64),59.99,0,22520,https://www.dkoldies.com/original-controller-clear-black-smoke-nintendo-64-n64/ +Original Controller Red on Clear - Nintendo 64 (N64),59.99,0,46019,https://www.dkoldies.com/original-controller-red-on-clear-nintendo-64-n64/ +Original Controller Jungle Clear Green - Nintendo 64 (N64),59.99,0,22523,https://www.dkoldies.com/original-controller-clear-green-nintendo-64-n64/ +Original Controller Ice Clear Blue - Nintendo 64 (N64),59.99,0,22530,https://www.dkoldies.com/original-controller-clear-blue-nintendo-64-n64/ +Original Controller Grape - Nintendo 64 (N64),59.99,0,22522,https://www.dkoldies.com/original-controller-grape-nintendo-64-n64/ +Original Controller Blue on Clear - Nintendo 64 (N64),59.99,0,46020,https://www.dkoldies.com/original-controller-blue-on-clear-nintendo-64-n64/ +New Expansion Pak - N64 Factory Sealed Accessory,59.99,0,30964,https://www.dkoldies.com/new-factory-sealed-expansion-pak-n64-acc/ +Mad Catz Steering Wheel - Nintendo 64 (N64),59.99,0,22519,https://www.dkoldies.com/mad-catz-steering-wheel-nintendo-64-n64/ +Legend of Zelda Ocarina of Time CE - Empty N64 Box,59.99,0,17443,https://www.dkoldies.com/legend-of-zelda-ocarina-of-time-ce-empty-n64-box/ +Legend of Zelda Majora's Mask - N64 Manual,59.99,60.99,29882,https://www.dkoldies.com/legend-of-zelda-majoras-mask-n64-manual/ +Duke Nukem 64 N64 - Empty N64 Box,59.99,0,17350,https://www.dkoldies.com/duke-nukem-64-n64-empty-n64-box/ +Diddy Kong Racing N64 - Empty N64 Box,59.99,0,17263,https://www.dkoldies.com/diddy-kong-racing-n64-empty-n64-box/ +007 GoldenEye - N64 Game,56.99,64.99,23856,https://www.dkoldies.com/007-goldeneye-n64-game/ +Mortal Kombat Trilogy - N64 Game,56.99,0,24098,https://www.dkoldies.com/mortal-kombat-trilogy-n64-game/ +WWF No Mercy - N64 Game,55.99,59.99,24100,https://www.dkoldies.com/wwf-no-mercy-n64-game/ +Vigilante 8 - N64 Game,54.99,64.99,24088,https://www.dkoldies.com/vigilante-8-n64-game/ +South Park Rally - N64 Game,54.99,59.99,23996,https://www.dkoldies.com/south-park-rally-n64-game/ +Duke Nukem 64 - N64 Game,54.99,58.99,24029,https://www.dkoldies.com/duke-nukem-64-n64-game/ +Tom and Jerry In Fists Of Furry 64 - N64 Game,54.99,66.99,24027,https://www.dkoldies.com/tom-and-jerry-in-fists-of-furry-64-n64-game/ +Complete Wave Race 64 Players Choice - N64,54.99,0,41525,https://www.dkoldies.com/complete-wave-race-64-players-choice-n64/ +Complete Turok 2 Seeds of Evil Player's Choice - N64,54.99,0,22240,https://www.dkoldies.com/complete-turok2-seeds-of-evil-pc-n64/ +Complete Ready 2 To Rumble Boxing - N64,54.99,0,22313,https://www.dkoldies.com/complete-ready-2-to-rumble-boxing-n64/ +Complete PaperBoy - N64,54.99,0,22231,https://www.dkoldies.com/complete-paperboy-n64/ +Complete 1080 Snowboarding - N64,54.99,0,19067,https://www.dkoldies.com/complete-1080-snowboarding-nintendo-n64/ +Expansion Pak - N64 Compatible,54.99,59.99,45556,https://www.dkoldies.com/expansion-pak-n64-compatible/ +Zelda Majora's Mask N64 - Official Nintendo Player's Guide,54.99,0,30880,https://www.dkoldies.com/players-guide-zelda-majoras-mask-n64-official-nintendo-64/ +Original Nintendo N64 Atomic Purple Empty System Box - Empty N64 Box,54.99,0,42220,https://www.dkoldies.com/original-nintendo-n64-atomic-purple-empty-system-box-empty-n64-box/ +Mario Party 3 - N64 Manual,54.99,0,29890,https://www.dkoldies.com/mario-party-3-n64-manual/ +Conker's Bad Fur Day N64 - Official Nintendo Player's Guide,54.99,0,30870,https://www.dkoldies.com/players-guide-conkers-bad-fur-day-n64-official-nintendo-64/ +Diddy Kong Racing - N64 Game,52.99,0,23942,https://www.dkoldies.com/diddy-kong-racing-n64-game/ +Killer Instinct Gold - N64 Game,52.99,59.99,23949,https://www.dkoldies.com/killer-instinct-gold-n64-game/ +Pokemon Puzzle League - N64 Game,52.99,54.99,23969,https://www.dkoldies.com/pokemon-puzzle-league-n64-game/ +Nightmare Creatures - N64 Game,52.99,0,23939,https://www.dkoldies.com/nightmare-creatures-n64-game/ +Fighting Force 64 - N64 Game,52.99,56.99,23963,https://www.dkoldies.com/fighting-force-64-n64-game/ +Castlevania N64 - Empty N64 Box,52.99,0,17229,https://www.dkoldies.com/castlevania-n64-empty-n64-box/ +Razor Freestyle Scooter - N64 Game,51.99,0,24094,https://www.dkoldies.com/razor-freestyle-scooter-n64-game/ +Clay Fighter 63 1/3 - N64 Game,51.99,0,24059,https://www.dkoldies.com/clay-fighter-63-1-3-n64-game/ +Bust A Move 99 64 - N64 Game,51.99,74.99,24026,https://www.dkoldies.com/bust-a-move-99-64-n64-game/ +Star Fox 64 - N64 Game,49.99,0,24075,https://www.dkoldies.com/star-fox-64-n64-game/ +NFL Blitz 2000 - N64 Game,49.99,0,23994,https://www.dkoldies.com/nfl-blitz-2000-n64-game/ +Bomberman 64 - N64 Game,49.99,0,23948,https://www.dkoldies.com/bomberman-64-n64-game/ +Tony Hawk's Pro Skater 2 - N64 Game,49.99,0,23891,https://www.dkoldies.com/tony-hawks-pro-skater-2-n64-game/ +Deadly Arts - N64 Game,49.99,0,24105,https://www.dkoldies.com/deadly-arts-n64-game/ +Vigilante 8 2nd Offense - N64 Game,49.99,0,23980,https://www.dkoldies.com/vigilante-8-2nd-offense-n64-game/ +Polaris SnoCross - N64 Game,49.99,69.99,24057,https://www.dkoldies.com/polaris-snocross-n64-game/ +New Brunswick Circuit Pro Bowling - N64 Factory Sealed Game,49.99,0,41338,https://www.dkoldies.com/new-brunswick-circuit-pro-bowling-n64-factory-sealed-game/ +International Superstar Soccer '98 - N64 Game,49.99,55.99,24114,https://www.dkoldies.com/international-superstar-soccer-98-n64-game/ +Fighter's Destiny 2 - N64 Game,49.99,0,23997,https://www.dkoldies.com/fighter-destiny-2-n64-game/ +Complete World Driver Championship - N64,49.99,0,22356,https://www.dkoldies.com/complete-world-driver-championship-n64/ +Complete Wipeout 64 - N64,49.99,0,22405,https://www.dkoldies.com/complete-wipeout-64-n64/ +Complete War Gods - N64,49.99,0,22442,https://www.dkoldies.com/complete-war-gods-n64/ +Complete Star Wars Racer Episode 1 - N64,49.99,0,22264,https://www.dkoldies.com/complete-star-wars-racer-episode-1-n64/ +Complete South Park Chef's Luv Shack - N64,49.99,0,22316,https://www.dkoldies.com/complete-south-park-chefs-luv-shack-n64/ +Complete Rush 2 Extreme Racing USA - N64,49.99,0,22401,https://www.dkoldies.com/complete-rush-2-extreme-racing-usa-n64/ +Complete Rally Challenge 2000 - N64,49.99,0,22221,https://www.dkoldies.com/complete-rally-challenge-2000-n64/ +Complete Quake - N64,49.99,59.99,22304,https://www.dkoldies.com/complete-quake-n64/ +Complete NBA Show Time on NBC - N64,49.99,0,22261,https://www.dkoldies.com/complete-nba-show-time-on-nbc-n64/ +Complete Micro Machines 64 Turbo - N64,49.99,0,22367,https://www.dkoldies.com/complete-micro-machines-64-turbo-n64/ +Complete Ken Griffey Jr.'s Slugfest - N64,49.99,0,22463,https://www.dkoldies.com/complete-ken-griffey-jr-s-slugfest-n64/ +Complete International Superstar Soccer 64 - N64,49.99,0,22325,https://www.dkoldies.com/complete-international-superstar-soccer-64-n64/ +Complete Goemon's Great Adventure - N64,49.99,0,22171,https://www.dkoldies.com/complete-complete-goemons-great-adventure-n64/ +Complete Excitebike 64 - N64,49.99,0,22303,https://www.dkoldies.com/complete-excitebike-64-n64/ +Complete Destruction Derby - N64,49.99,0,22296,https://www.dkoldies.com/complete-destruction-derby-n64/ +Complete Command & Conquer - N64,49.99,0,22284,https://www.dkoldies.com/complete-command-conquer-n64/ +Complete Body Harvest - N64,49.99,0,22246,https://www.dkoldies.com/complete-body-harvest-n64/ +Complete Asteroids Hyper 64 - N64,49.99,0,22243,https://www.dkoldies.com/complete-asteroids-hyper-64-n64/ +Complete 007 The World is Not Enough (Blue)- N64,49.99,0,22289,https://www.dkoldies.com/complete-007-the-world-is-not-enough-blue-n64/ +Charlie Blast's Territory - N64 Game,49.99,0,23943,https://www.dkoldies.com/charlie-blasts-territory-n64-game/ +Zelda Ocarina of Time - Prima Strategy Guide,49.99,0,30891,https://www.dkoldies.com/strategy-guide-zelda-ocarina-of-time-prima-n64-nintendo-64/ +Zelda Ocarina of Time - Brady Games Official Strategy Guide,49.99,0,30868,https://www.dkoldies.com/strategy-guide-zelda-ocarina-of-time-brady-games-n64/ +Wireless 1 Player DOCS Nintendo 64 Controller - N64,49.99,0,40020,https://www.dkoldies.com/wireless-1-player-docs-nintendo-64-controller-n64/ +Vigilante 8 2nd Offense N64 - Empty N64 Box,49.99,0,17301,https://www.dkoldies.com/vigilante-8-2nd-offense-n64-empty-n64-box/ +Super Mario 64 N64 - GameFan Official Strategy Guide,49.99,34.99,52728,https://www.dkoldies.com/super-mario-64-n64-gamefan-official-strategy-guide/ +Pokemon Stadium 2 N64 - Nintendo Power Official Game Guide,49.99,0,49310,https://www.dkoldies.com/pokemon-stadium-2-n64-nintendo-power-official-game-guide/ +Pokemon Stadium 2 - N64 Manual,49.99,0,29750,https://www.dkoldies.com/pokemon-stadium-2-n64-manual/ +Pokemon Snap N64 - Empty N64 Box,49.99,0,17216,https://www.dkoldies.com/pokemon-snap-n64-empty-n64-box/ +Original Nintendo N64 Empty System Box - Empty N64 Box,49.99,0,42219,https://www.dkoldies.com/original-nintendo-n64-empty-system-box-empty-n64-box/ +Ogre Battle 64 N64 - Empty N64 Box,49.99,0,17151,https://www.dkoldies.com/ogre-battle-64-n64-empty-n64-box/ +Earthworm Jim 3D - N64 Manual,49.99,0,29642,https://www.dkoldies.com/earthworm-jim-3d-n64-manual/ +Complete Rumble Pak - N64,49.99,59.99,21478,https://www.dkoldies.com/complete-rumble-pak-n64/ +Complete Interact Nintendo 64 Turbo Ram Expansion Pak - N64,49.99,0,40141,https://www.dkoldies.com/complete-interact-nintendo-64-turbo-ram-expansion-pak-n64/ +Carmageddon 64 - N64 Manual,49.99,0,29817,https://www.dkoldies.com/carmageddon-64-n64-manual/ +Mortal Kombat 4 - N64 Game,48.99,0,24073,https://www.dkoldies.com/mortal-kombat-4-n64-game/ +Complete In The Zone 2000 - N64,48.99,0,22187,https://www.dkoldies.com/complete-in-the-zone-2000-n64/ +Yoshi's Story - N64 Game,47.99,0,24002,https://www.dkoldies.com/yoshis-story-n64-game/ +Complete NBA Courtside - N64,47.99,0,22249,https://www.dkoldies.com/complete-nba-courtside-n64/ +Perfect Dark - N64 Game,46.99,0,24101,https://www.dkoldies.com/perfect-dark-n64-game/ +Donkey Kong 64 - N64 Game Acceptable,46.99,0,45388,https://www.dkoldies.com/donkey-kong-64-n64-game-discounted/ +Dr. Mario 64 - N64 Game,46.99,49.99,23987,https://www.dkoldies.com/dr-mario-64-n64-game/ +South Park - N64 Game,44.99,52.99,23959,https://www.dkoldies.com/south-park-n64-game/ +Army Men Sarge's Heroes 2 - N64 Game*,44.99,49.99,24104,https://www.dkoldies.com/army-men-sarges-heroes-2-n64-game/ +"Scooby-Doo!, Classic Creep Capers - N64 Game",44.99,0,23833,https://www.dkoldies.com/scooby-doo-classic-creep-capers-grey-n64-game/ +Beetle Adventure Racing - N64 Game,44.99,0,24033,https://www.dkoldies.com/beetle-adventure-racing-n64-game/ +Battletanx Global Assault - N64 Game,44.99,0,24074,https://www.dkoldies.com/battletanx-global-assault-battle-tanx-n64-game/ +"Tarzan, Disney's - N64 Game",44.99,0,23867,https://www.dkoldies.com/tarzan-disneys-n64-game/ +Magical Tetris Challenge - N64 Game,44.99,0,23975,https://www.dkoldies.com/magical-tetris-challenge-n64-game/ +Complete Wheel of Fortune - N64,44.99,0,22183,https://www.dkoldies.com/complete-wheel-of-fortune-n64/ +"Complete Tarzan, Disney's - N64",44.99,0,22218,https://www.dkoldies.com/complete-tarzan-disneys-n64/ +Complete Pokemon Puzzle League - N64,44.99,0,22320,https://www.dkoldies.com/complete-pokemon-puzzle-league-n64/ +Complete NFL Quarterback Club 2001 - N64,44.99,0,22292,https://www.dkoldies.com/complete-nfl-quarterback-club-2001-n64/ +Complete Midway's Greatest Arcade Hits Volume 1 - N64,44.99,0,22363,https://www.dkoldies.com/complete-midways-greatest-arcade-hits-volume-1-n64/ +Complete Hexen - N64,44.99,0,22429,https://www.dkoldies.com/complete-hexen-n64/ +Complete FIFA Road To World Cup 98 64 - N64,44.99,0,22388,https://www.dkoldies.com/complete-fifa-road-to-world-cup-98-64-n64/ +Complete Dark Rift - N64,44.99,0,22305,https://www.dkoldies.com/complete-dark-rift-n64/ +Complete Bio Freaks - N64,44.99,0,22220,https://www.dkoldies.com/complete-bio-freaks-n64/ +All Star Tennis 99 - N64 Game,44.99,0,23901,https://www.dkoldies.com/all-star-tennis-99-n64-game/ +Aidyn Chronicles The First Mage - N64 Game,44.99,54.99,23899,https://www.dkoldies.com/aidyn-chronicles-the-first-mage-n64-game/ +Original Controller Yellow - Nintendo 64 (N64),44.99,0,22525,https://www.dkoldies.com/original-controller-yellow-nintendo-64-n64/ +Original Clear N64 Controller - Acceptable,44.99,0,55852,https://www.dkoldies.com/original-clear-n64-controller-acceptable/ +Wrestlemania 2000 N64 - Empty N64 Box,44.99,0,17434,https://www.dkoldies.com/wrestlemania-2000-n64-empty-n64-box/ +Wayne Gretzky's 3D Hockey '98 N64 - Empty N64 Box,44.99,0,17387,https://www.dkoldies.com/wayne-gretzkys-3d-hockey-98-n64-empty-n64-box/ +Original Controller Red - Nintendo 64 (N64),44.99,0,22527,https://www.dkoldies.com/original-controller-red-nintendo-64-n64/ +Original Controller Green - Nintendo 64 (N64),44.99,0,22512,https://www.dkoldies.com/original-controller-green-nintendo-64-n64/ +Original Controller Blue - Nintendo 64 (N64),44.99,0,22524,https://www.dkoldies.com/original-controller-blue-nintendo-64-n64/ +Original Controller Black - Nintendo 64 (N64),44.99,0,22526,https://www.dkoldies.com/original-controller-black-nintendo-64-n64/ +Original Controller Atomic Clear Purple - Nintendo 64 (N64),44.99,0,55329,https://www.dkoldies.com/original-controller-atomic-clear-purple-nintendo-64-n64/ +New Admiral Premium Wireless Controller - N64,44.99,0,46101,https://www.dkoldies.com/new-admiral-premium-wireless-controller-n64/ +Mega Man 64 - N64 Manual,44.99,0,29818,https://www.dkoldies.com/mega-man-64-n64-manual/ +Magical Tetris Challenge N64 - Empty N64 Box,44.99,0,17296,https://www.dkoldies.com/magical-tetris-challenge-n64-empty-n64-box/ +Gex 64 Enter The Gecko N64 - Empty N64 Box,44.99,0,17201,https://www.dkoldies.com/gex-64-enter-the-gecko-n64-empty-n64-box/ +DOOM 64 N64 - Empty N64 Box,44.99,0,17401,https://www.dkoldies.com/doom-64-n64-empty-n64-box/ +Army Men Sarge's Heroes 2 N64 - Empty N64 Box,44.99,0,17425,https://www.dkoldies.com/army-men-sarges-heroes-2-n64-empty-n64-box/ +Cruis'n World - N64 Game,43.99,46.99,24045,https://www.dkoldies.com/cruisn-world-n64-game/ +"Xena Warrior Princess, The - N64 Game",43.99,0,23971,https://www.dkoldies.com/xena-warrior-princess-the-n64-game/ +Quake - N64 Game,42.99,47.99,23953,https://www.dkoldies.com/quake-n64-game/ +Mortal Kombat Mythologies Sub-Zero - N64 Game,42.99,49.99,24010,https://www.dkoldies.com/mortal-kombat-mythologies-sub-zero-n64-game/ +"New Tetris, The - N64 Game",42.99,0,23885,https://www.dkoldies.com/new-tetris-the-n64-game/ +Body Harvest - N64 Game,42.99,49.99,23895,https://www.dkoldies.com/body-harvest-n64-game/ +San Francisco Rush 2049 - N64 Game,42.99,59.99,24119,https://www.dkoldies.com/san-francisco-rush-2049-n64-game/ +Complete In The Zone 98 - N64,42.99,0,22251,https://www.dkoldies.com/complete-in-the-zone-98-n64/ +Space Station Silicon Valley - N64 Manual,42.99,0,29784,https://www.dkoldies.com/space-station-silicon-valley-n64-manual/ +F-Zero - N64 Operation Card,42.99,0,47224,https://www.dkoldies.com/f-zero-n64-operation-card/ +Complete Controller Pak - N64,42.99,49.99,21475,https://www.dkoldies.com/complete-controller-pak-n64/ +Rayman 2 The Great Escape - N64 Game,41.99,0,24055,https://www.dkoldies.com/rayman-2-the-great-escape-n64-game/ +Quest 64 - N64 Game,41.99,45.99,23932,https://www.dkoldies.com/quest-64-n64-game/ +Batman Beyond Return of Joker - N64 Game,41.99,76.99,24086,https://www.dkoldies.com/batman-beyond-return-of-joker-n64-game/ +NFL Blitz - N64 Game,39.99,42.99,23986,https://www.dkoldies.com/nfl-blitz-n64-game/ +Mario Tennis - N64 Game,39.99,46.99,23928,https://www.dkoldies.com/mario-tennis-n64-game/ +Army Men Sarge's Heroes - N64 Game,39.99,0,23967,https://www.dkoldies.com/army-men-sarges-heroes-n64-game/ +Ready 2 Rumble Boxing Round 2 - N64 Game,39.99,44.99,24079,https://www.dkoldies.com/ready-2-rumble-round-2-n64-game/ +Duke Nukem Zero Hour - N64 Game,39.99,0,23924,https://www.dkoldies.com/duke-nukem-zero-hour-n64-game/ +WinBack Covert Operations - N64 Game,39.99,0,24006,https://www.dkoldies.com/winback-covert-operations-n64-game/ +Space Invaders - N64 Game,39.99,0,23826,https://www.dkoldies.com/space-invaders-n64-game/ +Hot Wheels Turbo Racing - N64 Game,39.99,0,24067,https://www.dkoldies.com/hot-wheels-turbo-racing-n64-game/ +In The Zone 2000 - N64 Game,39.99,0,23836,https://www.dkoldies.com/in-the-zone-2000-n64-game/ +Aero Gauge - N64 Game,39.99,0,23874,https://www.dkoldies.com/aero-gauge-n64-game/ +Original Controller Grey - Nintendo 64 (N64),39.99,44.99,55330,https://www.dkoldies.com/original-controller-grey-nintendo-64-n64/ +Army Men Air Combat - N64 Game*,39.99,54.99,23958,https://www.dkoldies.com/army-men-air-combat-n64-game/ +New Sealed Lode Runner 3-D - N64 Factory Sealed Game,39.99,0,41337,https://www.dkoldies.com/new-sealed-lode-runner-3-d-n64-factory-sealed-game/ +Monaco Grand Prix - N64 Game,39.99,0,24116,https://www.dkoldies.com/monaco-grand-prix-n64-game/ +International Track & Field 2000 - N64 Game,39.99,0,24115,https://www.dkoldies.com/international-track-field-2000-n64-game/ +Complete Waialae Country Club Golf - N64,39.99,0,22205,https://www.dkoldies.com/complete-waialae-country-club-golf-n64/ +Complete WWF War Zone - N64,39.99,0,22195,https://www.dkoldies.com/complete-wwf-war-zone-n64/ +Complete WWF Attitude - N64,39.99,0,22202,https://www.dkoldies.com/complete-wwf-attitude-n64/ +Complete WCW Mayhem - N64,39.99,0,22210,https://www.dkoldies.com/complete-wcw-mayhem-n64/ +Complete WCW Backstage Assault - N64,39.99,0,22395,https://www.dkoldies.com/complete-wcw-backstage-assault-n64/ +Complete Topgear Overdrive - N64,39.99,0,22446,https://www.dkoldies.com/complete-topgear-overdrive-n64/ +Complete South Park Rally - N64,39.99,0,22347,https://www.dkoldies.com/complete-south-park-rally-n64/ +Complete Ready 2 Rumble Round 2 - N64,39.99,0,22430,https://www.dkoldies.com/complete-ready-2-rumble-round-2-n64/ +"Complete Rainbow Six, Tom Clancy's - N64",39.99,0,22393,https://www.dkoldies.com/complete-rainbow-six-n64/ +Complete Namco Museum 64 - N64,39.99,44.99,22232,https://www.dkoldies.com/complete-namco-museum-64-n64/ +Complete NHL 99 - N64,39.99,0,22212,https://www.dkoldies.com/complete-nhl-99-n64/ +Complete Ms. Pac-Man Maze Madness- N64,39.99,0,22186,https://www.dkoldies.com/complete-ms-pac-man-maze-madness-n64/ +Complete Monopoly 64 - N64,39.99,0,22372,https://www.dkoldies.com/complete-monopoly-64-n64/ +Complete Major League Baseball Ken Griffey Jr - N64,39.99,0,22328,https://www.dkoldies.com/complete-major-league-baseball-ken-griffey-jr-n64/ +Complete Magical Tetris Challenge - N64,39.99,0,22326,https://www.dkoldies.com/complete-magical-tetris-challenge-n64/ +Complete Mace The Dark Age - N64,39.99,0,22282,https://www.dkoldies.com/complete-mace-the-dark-age-n64/ +Complete Jet Force Gemini - N64,39.99,0,22276,https://www.dkoldies.com/complete-jet-force-gemini-n64/ +Complete Indy Racing 2000 - N64,39.99,0,22181,https://www.dkoldies.com/complete-indy-racing-2000-n64/ +Complete Hercules The Legendary Journeys - N64,39.99,0,22399,https://www.dkoldies.com/complete-hercules-the-legendary-journeys-n64/ +Complete GT64 Championship Ed. - N64,39.99,0,22358,https://www.dkoldies.com/complete-gt64-championship-ed-n64/ +Complete Elmo's Number Journey - N64,39.99,0,22176,https://www.dkoldies.com/complete-elmos-number-journey-n64/ +Complete ECW Hardcore Revolution - N64,39.99,0,22203,https://www.dkoldies.com/complete-ecw-hardcore-revolution-n64/ +Complete Circuit Pro Bowling 64 - N64,39.99,0,22369,https://www.dkoldies.com/complete-circuit-pro-bowling-64-n64/ +Complete Circuit Pro Bowling - N64,39.99,0,22185,https://www.dkoldies.com/complete-circuit-pro-bowling-n64/ +Complete Chopper Attack - N64,39.99,0,22312,https://www.dkoldies.com/complete-chopper-attack-n64/ +Complete All Star Baseball 2001 - N64,39.99,0,22341,https://www.dkoldies.com/complete-all-star-baseball-2001-n64/ +Blues Brothers 2000 - N64 Game,39.99,49.99,24107,https://www.dkoldies.com/blues-brothers-2000-n64-game/ +Original N64 Controller Half / Half - Nintendo 64 (N64),39.99,44.99,57065,https://www.dkoldies.com/original-n64-controller-half-half-nintendo-64-n64/ +Turok 3 Shadow of Oblivion N64 - Acclaim Official Game Guide,39.99,0,49511,https://www.dkoldies.com/turok-3-shadow-of-oblivion-n64-acclaim-official-game-guide/ +Star Wars Rogue Squadron N64 - Empty N64 Box,39.99,0,17187,https://www.dkoldies.com/star-wars-rogue-squadron-n64-empty-n64-box/ +Resident Evil 2 - N64 Manual,39.99,0,29693,https://www.dkoldies.com/resident-evil-2-n64-manual/ +Quest 64 N64 - Empty N64 Box,39.99,0,17254,https://www.dkoldies.com/quest-64-n64-empty-n64-box/ +Legend of Zelda Zelda Majora's Mask 3D - Prima Strategy Guide,39.99,0,57224,https://www.dkoldies.com/legend-of-zelda-zelda-majoras-mask-3d-prima-strategy-guide/ +Goemon's Great Adventure - N64 Manual,39.99,0,29635,https://www.dkoldies.com/goemons-great-adventure-n64-manual/ +Conker's Bad Fur Day N64 - Prima Official Game Guide,39.99,0,49507,https://www.dkoldies.com/conkers-bad-fur-day-n64-prima-official-game-guide/ +Complete GameShark Pro V.3.3 - Nintendo 64,39.99,0,39969,https://www.dkoldies.com/gameshark-pro-v-3-3-in-box-nintendo-64/ +Complete Cleaning Kit - Nintendo 64 (N64),39.99,0,40191,https://www.dkoldies.com/cleaning-kit-complete-in-box-nintendo-64-n64/ +Duke Nukem Zero Hour N64 - Empty N64 Box,38.99,0,17246,https://www.dkoldies.com/duke-nukem-zero-hour-n64-empty-n64-box/ +Mickey's Speedway USA - N64 Game,37.99,0,23951,https://www.dkoldies.com/mickeys-speedway-usa-n64-game/ +NBA Hang Time - N64 Game,37.99,0,24058,https://www.dkoldies.com/nba-hang-time-n64-game/ +Gex 64 Enter The Gecko - N64 Game,37.99,0,23879,https://www.dkoldies.com/gex-64-enter-the-gecko-n64-game/ +Wetrix - N64 Game,37.99,0,24047,https://www.dkoldies.com/wetrix-n64-game/ +NFL Blitz 2001 - N64 Game,36.99,39.99,23995,https://www.dkoldies.com/nfl-blitz-2001-n64-game/ +Armorines Project SWARM - N64 Game,36.99,0,24108,https://www.dkoldies.com/armorines-project-swarm-n64-game/ +Complete Top Gear Rally - N64,36.99,0,22317,https://www.dkoldies.com/complete-top-gear-rally-n64/ +Tony Hawk's Pro Skater 2 N64 - Empty N64 Box,36.99,0,17213,https://www.dkoldies.com/tony-hawks-pro-skater-2-n64-empty-n64-box/ +Cruis'n USA - N64 Game,34.99,0,23847,https://www.dkoldies.com/cruisn-usa-n64-game/ +"Toy Story 2, Disney's - N64 Game",34.99,0,23912,https://www.dkoldies.com/toy-story-2-disneys-n64-game/ +Battletanx - N64 Game,34.99,39.99,23911,https://www.dkoldies.com/battletanx-n64-game/ +Hexen - N64 Game,34.99,39.99,24078,https://www.dkoldies.com/hexen-n64-game/ +Scars - N64 Game,34.99,0,23982,https://www.dkoldies.com/scars-n64-game/ +Bust a Move 2 Arcade Edition - N64 Game,34.99,0,24087,https://www.dkoldies.com/bust-a-move-2-arcade-edition-n64-game/ +Gauntlet Legends - N64 Manual,34.99,37.99,29790,https://www.dkoldies.com/gauntlet-legends-n64-manual/ +Tonic Trouble - N64 Game,34.99,32.99,23955,https://www.dkoldies.com/tonic-trouble-n64-game/ +Hercules The Legendary Journeys - N64 Game,34.99,49.99,24048,https://www.dkoldies.com/hercules-the-legendary-journeys-n64-game/ +Battle Zone Rise of The Black Dogs 64 - N64 Game,34.99,0,24036,https://www.dkoldies.com/battle-zone-rise-of-the-black-dogs-64-n64-game/ +Top Gear Rally 2 - N64 Game,34.99,52.99,24017,https://www.dkoldies.com/top-gear-rally-2-n64-game/ +Penny Racers - N64 Game,34.99,0,24056,https://www.dkoldies.com/penny-racers-n64-game/ +Nuclear Strike 64 - N64 Game,34.99,0,24015,https://www.dkoldies.com/nuclear-strike-64-n64-game/ +Complete Triple Play 2000 - N64,34.99,0,22330,https://www.dkoldies.com/complete-triple-play-2000-n64/ +Complete Space Invaders - N64,34.99,0,22177,https://www.dkoldies.com/complete-space-invaders-n64/ +Complete Power Rangers Lightspeed Rescue - N64,34.99,0,22403,https://www.dkoldies.com/complete-power-rangers-lightspeed-rescue-n64/ +Complete NFL Quarterback Club 98 - N64,34.99,39.99,22200,https://www.dkoldies.com/complete-nfl-quarterback-club-98-n64/ +Complete NBA Jam 2000 - N64,34.99,0,22469,https://www.dkoldies.com/complete-nba-jam-2000-n64/ +Complete NASCAR 99 - N64,34.99,0,22444,https://www.dkoldies.com/complete-nascar-99-n64/ +Complete MRC Multi Racing Championship - N64,34.99,0,22360,https://www.dkoldies.com/complete-mrc-multi-racing-championship-n64/ +Complete Knockout Kings 2000 - N64,34.99,0,22199,https://www.dkoldies.com/complete-knockout-kings-2000-n64/ +Complete In The Zone 99 - N64,34.99,39.99,22248,https://www.dkoldies.com/complete-in-the-zone-99-n64/ +Complete Forsaken 64 - Nintendo 64 N64,34.99,0,22266,https://www.dkoldies.com/complete-forsaken-64-nintendo-64-n64/ +Complete FIFA 99 - N64,34.99,0,22412,https://www.dkoldies.com/complete-fifa-99-n64/ +Complete F-1 World Grand Prix - N64,34.99,0,22344,https://www.dkoldies.com/complete-f-1-world-grand-prix-n64/ +Complete Extreme-G - N64,34.99,0,22413,https://www.dkoldies.com/complete-extreme-g-n64/ +Complete Bust a Move 2 Arcade Edition - N64,34.99,0,22438,https://www.dkoldies.com/complete-bust-a-move-2-arcade-edition-n64/ +Complete Automobili Lamborghini - N64,34.99,0,22287,https://www.dkoldies.com/complete-automobili-lamborghini-n64/ +Complete All Star Baseball 99 - N64,34.99,0,22201,https://www.dkoldies.com/complete-all-star-baseball-99-n64/ +Complete All Star Baseball 2000 - N64,34.99,0,22298,https://www.dkoldies.com/complete-all-star-baseball-2000-n64/ +Zelda Majora's Mask - Prima Strategy Guide,34.99,0,30898,https://www.dkoldies.com/strategy-guide-zelda-majoras-mask-prima-n64-nintendo-64/ +Turok Rage Wars - Empty N64 Box,34.99,0,17190,https://www.dkoldies.com/turok-rage-wars-empty-n64-box/ +Turok Dinosaur Hunter N64 - Empty N64 Box,34.99,0,17228,https://www.dkoldies.com/turok-dinosaur-hunter-n64-empty-n64-box/ +Super Mario 64 N64 - Official Nintendo Player's Guide,34.99,34.99,30875,https://www.dkoldies.com/players-guide-super-mario-64-n64-official-nintendo-64/ +Star Fox 64 Player's Choice - Empty N64 Box,34.99,39.99,39842,https://www.dkoldies.com/star-fox-64-players-choice-empty-n64-box/ +Snowboard Kids 2 - N64 Manual,34.99,0,29865,https://www.dkoldies.com/snowboard-kids-2-n64-manual/ +Snowboard Kids - N64 Manual,34.99,0,29911,https://www.dkoldies.com/snowboard-kids-n64-manual/ +Retro Fighters Brawler 64 Controller - N64,34.99,0,46118,https://www.dkoldies.com/retro-fighters-brawler-64-controller-n64/ +Pokemon Stadium N64 - Empty N64 Box,34.99,0,46009,https://www.dkoldies.com/pokemon-stadium-n64-empty-n64-box/ +Original Microphone with VRU - Nintendo 64 (N64),34.99,0,57484,https://www.dkoldies.com/original-microphone-with-vru-nintendo-64-n64/ +NFL Blitz N64 - Empty N64 Box,34.99,0,17307,https://www.dkoldies.com/nfl-blitz-n64-empty-n64-box/ +Milo's Astro Lanes 64 N64 - Empty N64 Box,34.99,0,17346,https://www.dkoldies.com/milos-astro-lanes-64-n64-empty-n64-box/ +Mario Party 2 - Prima Strategy Guide,34.99,0,30887,https://www.dkoldies.com/strategy-guide-mario-party-2-prima-n64-nintendo-64/ +Mario Kart 64 (Blue) - N64 Manual,34.99,39.99,36992,https://www.dkoldies.com/mario-kart-64-blue-n64-manual/ +Legend of Zelda Ocarina of Time - N64 Manual,34.99,36.99,29857,https://www.dkoldies.com/legend-of-zelda-ocarina-of-time-n64-manual/ +Complete GameShark Pro V.3 - Nintendo 64,34.99,0,39319,https://www.dkoldies.com/complete-gameshark-pro-v-3-nintendo-64/ +Banjo-Kazooie N64 - Official Nintendo Power Player's Guide,34.99,0,39359,https://www.dkoldies.com/banjo-kazooie-n64-official-nintendo-power-players-guide/ +Star Wars Rogue Squadron - N64 Game,33.99,0,23865,https://www.dkoldies.com/star-wars-rogue-squadron-n64-game/ +Pokemon Snap - N64 Game,33.99,0,23894,https://www.dkoldies.com/pokemon-snap-n64-game/ +Cruis'n Exotica - N64 Manual,33.99,0,29688,https://www.dkoldies.com/cruisn-exotica-n64-manual/ +Wrestlemania 2000 - N64 Game,32.99,34.99,24113,https://www.dkoldies.com/wrestlemania-2000-n64-game/ +Rush 2 Extreme Racing USA - N64 Game,32.99,34.99,24050,https://www.dkoldies.com/rush-2-extreme-racing-usa-n64-game/ +Quake II - N64 Game,32.99,0,23929,https://www.dkoldies.com/quake-ii-n64-game/ +Complete Hydro Thunder - N64,32.99,0,22391,https://www.dkoldies.com/complete-hydro-thunder-n64/ +Cruis'n USA - Empty N64 Box,32.99,0,17169,https://www.dkoldies.com/cruisn-usa-empty-n64-box/ +Duke Nukem 64 - N64 Manual,31.99,0,29843,https://www.dkoldies.com/duke-nukem-64-n64-manual/ +Kirby 64 The Crystal Shards - N64 Manual,30.99,0,29878,https://www.dkoldies.com/kirby-64-the-crystal-shards-n64-manual/ +Star Wars Shadows of the Empire - N64 Game,29.99,0,23863,https://www.dkoldies.com/star-wars-shadows-of-the-empire-n64-game/ +007 The World is Not Enough - N64 Game,29.99,0,23937,https://www.dkoldies.com/007-the-world-is-not-enough-grey-n64-game/ +Perfect Dark - N64 Game Acceptable,29.99,31.99,45552,https://www.dkoldies.com/perfect-dark-n64-game-acceptable/ +Excitebike 64 - N64 Game,29.99,0,23952,https://www.dkoldies.com/excitebike-64-n64-game/ +Pilot Wings 64 - N64 Game,29.99,34.99,24001,https://www.dkoldies.com/pilot-wings-64-n64-game/ +"Rainbow Six, Tom Clancy's - N64 Game",29.99,34.99,24042,https://www.dkoldies.com/rainbow-six-n64-game/ +Turok Rage Wars - N64 Game,29.99,34.99,23868,https://www.dkoldies.com/turok-rage-wars-n64-game/ +Bomberman Hero - N64 Game,29.99,39.99,23866,https://www.dkoldies.com/bomberman-hero-n64-game/ +South Park Chef's Luv Shack - N64 Game,29.99,44.99,23965,https://www.dkoldies.com/south-park-chefs-luv-shack-n64-game/ +Tigger's Honey Hunt - N64 Game,29.99,0,24041,https://www.dkoldies.com/tiggers-honey-hunt-n64-game/ +Ms. Pac-Man Maze Madness - N64 Game,29.99,0,23835,https://www.dkoldies.com/ms-pac-man-maze-madness-n64-game/ +Flying Dragon - N64 Game,29.99,0,23837,https://www.dkoldies.com/flying-dragon-n64-game/ +Dual Heroes - N64 Game,29.99,34.99,24014,https://www.dkoldies.com/dual-heroes-n64-game/ +Mike Piazza's Strike Zone - N64 Game,29.99,0,24032,https://www.dkoldies.com/mike-piazzas-strikezone-n64-game/ +Micro Machines 64 Turbo - N64 Game,29.99,0,24016,https://www.dkoldies.com/micro-machines-64-turbo-n64-game/ +Iggy's Reckin Balls - N64 Game,29.99,0,23964,https://www.dkoldies.com/iggys-reckin-balls-n64-game/ +Original N64 Controller Half / Half - Acceptable,29.99,44.99,55854,https://www.dkoldies.com/original-n64-controller-half-half-acceptable/ +Original Rumble Pak - N64,29.99,0,55587,https://www.dkoldies.com/original-rumble-pak-n64/ +Super Pad 64 - N64 Controller,29.99,0,55374,https://www.dkoldies.com/super-pad-64-n64-controller/ +Vigilante 8 2nd Offense - N64 Manual,29.99,37.99,29794,https://www.dkoldies.com/vigilante-8-2nd-offense-n64-manual/ +Original Transfer Pak - Nintendo 64 (N64),29.99,0,55379,https://www.dkoldies.com/original-transfer-pak-nintendo-64-n64/ +Mario Party - N64 Manual,29.99,32.99,29874,https://www.dkoldies.com/mario-party-n64-manual/ +Command & Conquer - N64 Game,29.99,0,23933,https://www.dkoldies.com/command-conquer-n64-game/ +Wipeout 64 - N64 Game,29.99,0,24054,https://www.dkoldies.com/wipeout-64-n64-game/ +Powerpuff Girls Chemical X Traction - N64 Game,29.99,39.99,24070,https://www.dkoldies.com/powerpuff-girls-chemical-x-traction-n64-game/ +Destruction Derby - N64 Game,29.99,39.99,23945,https://www.dkoldies.com/destruction-derby-n64-game/ +V-Rally Edition 99 - N64 Game,29.99,0,23831,https://www.dkoldies.com/v-rally-edition-99-n64-game/ +International Superstar Soccer 64 - N64 Game,29.99,0,23974,https://www.dkoldies.com/international-superstar-soccer-64-n64-game/ +Complete Wayne Gretzky's 3D Hockey - N64,29.99,0,22301,https://www.dkoldies.com/complete-wayne-gretzkys-3d-hockey-n64/ +Complete Wayne Gretzky's 3D Hockey '98 - N64,29.99,0,22417,https://www.dkoldies.com/complete-wayne-gretzkys-3d-hockey-98-n64/ +Complete Super Bowling - N64,29.99,0,19089,https://www.dkoldies.com/complete-super-bowling-nintendo-n64/ +Complete Scars - N64,29.99,0,22333,https://www.dkoldies.com/complete-scars-n64/ +Complete Roadsters - N64,29.99,0,22329,https://www.dkoldies.com/complete-roadsters-n64/ +Complete Nagano Winter Olympics '98 - N64,29.99,0,22270,https://www.dkoldies.com/complete-nagano-winter-olympics-98-n64/ +Complete NHL Breakaway 98 - N64,29.99,39.99,22244,https://www.dkoldies.com/complete-nhl-breakaway-98-n64/ +Complete NFL Quarterback Club 99 - N64,29.99,0,22213,https://www.dkoldies.com/complete-nfl-quarterback-club-99-n64/ +Complete NBA Live 99 - N64,29.99,0,22206,https://www.dkoldies.com/complete-nba-live-99-n64/ +Complete Madden 99 - N64 Game,29.99,0,22192,https://www.dkoldies.com/complete-madden-99-n64/ +Complete Madden 2001 - N64,29.99,34.99,22273,https://www.dkoldies.com/complete-madden-2001-n64/ +Complete Golden Nugget - N64,29.99,0,22190,https://www.dkoldies.com/complete-golden-nugget-n64/ +Complete Fox Sports College Hoops 99 - N64,29.99,0,22194,https://www.dkoldies.com/complete-fox-sports-college-hoops-99-n64/ +Complete Bottom of The 9TH - N64,29.99,0,22336,https://www.dkoldies.com/complete-bottom-of-the-9th-n64/ +Complete Aerofighters Assault - N64,29.99,0,22272,https://www.dkoldies.com/complete-aerofighters-assault-n64/ +InterAct Super Pad 64 Plus Black - N64 Controller,29.99,0,57130,https://www.dkoldies.com/interact-super-pad-64-plus-black-n64-controller/ +Zelda Ocarina of Time Perfect Guide - Versus Book,29.99,0,31751,https://www.dkoldies.com/strategy-guide-zelda-ocarina-of-time-versus-book-n64/ +Turok 3 Shadow of Oblivion - N64 Manual,29.99,0,29920,https://www.dkoldies.com/turok-3-shadow-of-oblivion-n64-manual/ +Tony Hawk's Pro Skater - N64 Manual,29.99,0,29697,https://www.dkoldies.com/tony-hawks-pro-skater-n64-manual/ +Star Wars Shadows of The Empire N64 - Empty N64 Box,29.99,39.99,17185,https://www.dkoldies.com/star-wars-shadows-of-the-empire-n64-empty-n64-box/ +Star Wars Racer Episode 1 N64 - Empty N64 Box,29.99,0,17235,https://www.dkoldies.com/star-wars-racer-episode-1-n64-empty-n64-box/ +San Francisco Rush 2049 - N64 Manual,29.99,0,29935,https://www.dkoldies.com/san-francisco-rush-2049-n64-manual/ +Pokemon Snap - Official Nintendo Player's Guide,29.99,0,30883,https://www.dkoldies.com/players-guide-pokemon-snap-official-nintendo-64/ +Pokemon Puzzle League N64 - Empty N64 Box,29.99,0,17290,https://www.dkoldies.com/pokemon-puzzle-league-n64-empty-n64-box/ +Perfect Dark N64 - Empty N64 Box,29.99,0,17422,https://www.dkoldies.com/perfect-dark-n64-empty-n64-box/ +Original Nintendo 64 Hip Pack N64,29.99,0,49158,https://www.dkoldies.com/original-nintendo-64-hip-pack-n64/ +Massive Memory Card 32X - Nintendo 64 (N64),29.99,0,22515,https://www.dkoldies.com/massive-memory-card-32x-nintendo-64-n64/ +Mario Kart 64 N64 - Official Nintendo Player's Guide,29.99,0,30876,https://www.dkoldies.com/mario-kart-64-n64-official-nintendo-players-guide/ +Legend of Zelda Majora's Mask N64 - Versus Books Perfect Guide,29.99,0,42227,https://www.dkoldies.com/perfect-guide-zelda-majoras-mask-n64-versus-books/ +Jet Force Gemini N64 - Empty N64 Box,29.99,0,17247,https://www.dkoldies.com/jet-force-gemini-n64-empty-n64-box/ +FIFA Road To World Cup 98 64 N64 - Empty N64 Box,29.99,0,17358,https://www.dkoldies.com/fifa-road-to-world-cup-98-64-n64-empty-n64-box/ +Expansion Pak N64 - Empty N64 Box with Insert,29.99,0,39320,https://www.dkoldies.com/expansion-pak-n64-empty-n64-box-with-insert/ +Doom 64 - N64 Manual,29.99,0,29894,https://www.dkoldies.com/doom-64-n64-manual/ +Body Harvest N64 - Empty N64 Box,29.99,0,17217,https://www.dkoldies.com/body-harvest-n64-empty-n64-box/ +007 The World is Not Enough N64 - Empty N64 Box,29.99,0,17259,https://www.dkoldies.com/007-the-world-is-not-enough-n64-empty-n64-box/ +1080 Snowboarding - N64 Game,28.99,32.99,24022,https://www.dkoldies.com/1080-snowboarding-n64-game/ +Wetrix N64 - Empty N64 Box,28.99,0,17368,https://www.dkoldies.com/wetrix-n64-empty-n64-box/ +Tony Hawk's Pro Skater - N64 Game,27.99,29.99,23882,https://www.dkoldies.com/tony-hawk-s-pro-skater-n64-game/ +Turok Dinosaur Hunter - N64 Game,27.99,32.99,23906,https://www.dkoldies.com/turok-dinosaur-hunter-n64-game/ +Gex 3 Deep Cover Gecko - N64 Game,27.99,39.99,24071,https://www.dkoldies.com/gex-3-deep-cover-gecko-n64-game/ +WWF No Mercy - N64 Manual,27.99,0,29914,https://www.dkoldies.com/wwf-no-mercy-n64-manual/ +Complete WCW Nitro - N64,27.99,0,22274,https://www.dkoldies.com/complete-wcw-nitro-n64/ +Complete NBA Live 2000 - N64,27.99,0,22324,https://www.dkoldies.com/complete-nba-live-2000-n64/ +Turok 2 Seeds of Evil N64 - Empty N64 Box,27.99,0,17210,https://www.dkoldies.com/turok-2-seeds-of-evil-n64-empty-n64-box/ +"Shadowgate 64, Trails of The four Towers - N64 Manual",27.99,0,29638,https://www.dkoldies.com/shadowgate-64-trails-of-the-four-towers-n64-manual/ +Rampage 2 Universal Tour - N64 Manual,27.99,0,29906,https://www.dkoldies.com/rampage-2-universal-tour-n64-manual/ +Blast Corps N64 - Empty N64 Box,27.99,0,17240,https://www.dkoldies.com/blast-corps-n64-empty-n64-box/ +Wave Race 64 - N64 Game,26.99,29.99,23864,https://www.dkoldies.com/wave-race-64-n64-game/ +San Francisco Rush Extreme Racing - N64 Game,26.99,29.99,24069,https://www.dkoldies.com/san-francisco-rush-extreme-racing-n64-game/ +PaperBoy - N64 Game,26.99,29.99,23880,https://www.dkoldies.com/paperboy-n64-game/ +Off Road Challenge - N64 Game,26.99,29.99,23956,https://www.dkoldies.com/off-road-challenge-n64-game/ +Top Gear Rally - N64 Game,26.99,0,23966,https://www.dkoldies.com/top-gear-rally-n64-game/ +Rally Challenge 2000 - N64 Game,26.99,29.99,23870,https://www.dkoldies.com/rally-challenge-2000-n64-game/ +Circuit Pro Bowling - N64 Game,26.99,0,23834,https://www.dkoldies.com/circuit-pro-bowling-n64-game/ +Asteroids Hyper 64 - N64 Game,26.99,0,23892,https://www.dkoldies.com/asteroids-hyper-64-n64-game/ +NBA Jam 2000 - N64 Game,26.99,0,24117,https://www.dkoldies.com/nba-jam-2000-n64-game/ +Namco Museum 64 - Empty N64 Box,26.99,0,17203,https://www.dkoldies.com/namco-museum-64-empty-n64-box/ +1080 Ten Eighty Snowboarding N64 - Empty N64 Box,26.99,28.99,17343,https://www.dkoldies.com/1080-ten-eighty-snowboarding-n64-empty-n64-box/ +Re-Volt - N64 Game,25.99,29.99,23914,https://www.dkoldies.com/re-volt-n64-game/ +Fighters Destiny - N64 Game,25.99,0,23887,https://www.dkoldies.com/fighters-destiny-n64-game/ +Milo's Astro Lanes 64 - N64 Game,25.99,0,24025,https://www.dkoldies.com/milos-astro-lanes-64-n64-game/ +Top Gear Hyper-Bike - N64 Game,25.99,0,24046,https://www.dkoldies.com/top-gear-hyper-bike-n64-game/ +NBA Showtime on NBC - N64 Game,25.99,0,23910,https://www.dkoldies.com/nba-show-time-on-nbc-n64-game/ +War Gods N64 - Empty N64 Box,25.99,0,17412,https://www.dkoldies.com/war-gods-n64-empty-n64-box/ +Fighter Destiny 2 - N64 Manual,25.99,0,29811,https://www.dkoldies.com/fighter-destiny-2-n64-manual/ +Jet Force Gemini - N64 Game,24.99,28.99,23925,https://www.dkoldies.com/jet-force-gemini-n64-game/ +Ready 2 Rumble Boxing - N64 Game,24.99,29.99,23962,https://www.dkoldies.com/ready-2-to-rumble-boxing-n64-game/ +Glover - N64 Game,24.99,26.99,24103,https://www.dkoldies.com/glover-n64-game/ +LEGO Racers - N64 Game,24.99,0,24063,https://www.dkoldies.com/lego-racers-n64-game/ +FIFA 99 - N64 Game,24.99,0,24061,https://www.dkoldies.com/fifa-99-n64-game/ +NBA Courtside 2 - N64 Game,24.99,0,23904,https://www.dkoldies.com/nba-courtside-2-n64-game/ +Aerofighters Assault - N64 Game,24.99,0,23921,https://www.dkoldies.com/aerofighters-assault-n64-game/ +New Replica Controller Grey - N64,24.99,0,36354,https://www.dkoldies.com/new-replica-controller-grey-n64/ +New Replica Controller Yellow - N64,24.99,0,37599,https://www.dkoldies.com/new-cirka-replica-controller-yellow-n64/ +New Replica Controller Smoke - N64,24.99,0,56931,https://www.dkoldies.com/new-replica-controller-smoke-n64/ +Original Controller Grey - Nintendo 64 Acceptable,24.99,0,56902,https://www.dkoldies.com/original-controller-grey-nintendo-64-acceptable/ +New Replica Controller Clear Watermelon Red - N64,24.99,0,41380,https://www.dkoldies.com/new-cirka-replica-controller-clear-watermelon-red-n64/ +New Replica Controller Green - N64,24.99,0,41383,https://www.dkoldies.com/new-cirka-replica-controller-green-n64/ +New Replica Controller Clear Fire Orange - N64,24.99,0,41381,https://www.dkoldies.com/new-cirka-replica-controller-clear-fire-orange-n64/ +New Replica Controller Clear Atomic Purple - N64,24.99,0,41375,https://www.dkoldies.com/new-cirka-replica-controller-clear-atomic-purple-n64/ +New Replica Controller Clear Grape Purple - N64,24.99,0,41378,https://www.dkoldies.com/new-cirka-replica-controller-clear-grape-purple-n64/ +New Replica Controller Red - N64,24.99,0,41384,https://www.dkoldies.com/new-cirka-replica-controller-red-n64/ +New Replica Controller Clear Turquoise Blue - N64,24.99,0,41382,https://www.dkoldies.com/new-cirka-replica-controller-clear-turquoise-n64/ +New Replica Controller Clear Jungle Green - N64,24.99,0,46107,https://www.dkoldies.com/new-replica-controller-clear-jungle-green-n64/ +New Replica Controller Gold - N64,24.99,0,37600,https://www.dkoldies.com/new-cirka-replica-controller-gold-n64/ +New Replica Controller Blue - N64,24.99,0,41377,https://www.dkoldies.com/new-cirka-replica-controller-blue-n64/ +New Replica Controller Black - N64,24.99,0,41376,https://www.dkoldies.com/new-cirka-replica-controller-black-n64/ +Mario Party 2 - N64 Manual,24.99,0,29699,https://www.dkoldies.com/mario-party-2-n64-manual/ +World Cup 98 - N64 Game,24.99,0,23840,https://www.dkoldies.com/world-cup-98-n64-game/ +NHL Blades of Steel '99 - N64 Game,24.99,0,23989,https://www.dkoldies.com/nhl-blades-of-steel-99-n64-game/ +Golden Nugget - N64 Game,24.99,0,23839,https://www.dkoldies.com/golden-nugget-n64-game/ +Cyber Tiger - N64 Game,24.99,0,23876,https://www.dkoldies.com/cyber-tiger-woods-golf-n64-game/ +Chopper Attack - N64 Game,24.99,0,23961,https://www.dkoldies.com/chopper-attack-n64-game/ +Bio Freaks - N64 Game,24.99,19.99,23869,https://www.dkoldies.com/bio-freaks-n64-game/ +Robotron 64 - N64 Game,24.99,34.99,24011,https://www.dkoldies.com/robotron-64-n64-game/ +New Razor Freestyle Scooter - N64 Factory Sealed Game,24.99,0,19087,https://www.dkoldies.com/new-factory-sealed-razor-freestyle-scooter-nintendo-n64/ +New Knockout Kings 2000 - N64 Factory Sealed Game,24.99,0,19075,https://www.dkoldies.com/new-factory-sealed-knockout-kings-2000-nintendo-n64/ +Indy Racing 2000 - N64 Game,24.99,0,23830,https://www.dkoldies.com/indy-racing-2000-n64-game/ +Elmo's Number Journey - N64 Game,24.99,0,23825,https://www.dkoldies.com/elmos-number-journey-n64-game/ +Elmo's Letter Adventure - N64 Game,24.99,29.99,24099,https://www.dkoldies.com/elmos-letter-adventure-n64-game/ +"Complete Scooby-Doo!, Classic Creep Capers - N64",24.99,0,22184,https://www.dkoldies.com/complete-scooby-doo-classic-creep-capers-n64/ +Complete Rampage 2 Universal Tour - N64,24.99,0,22443,https://www.dkoldies.com/complete-rampage-2-universal-tour-n64/ +Complete NBA Courtside 2 - N64,24.99,0,22255,https://www.dkoldies.com/complete-nba-courtside-2-n64/ +Complete Milo's Astro Lanes 64 - N64,24.99,0,22376,https://www.dkoldies.com/complete-milos-astro-lanes-64-n64/ +Complete Madden 64 - N64,24.99,0,19076,https://www.dkoldies.com/complete-madden-64-n64/ +Complete Madden 2002 - N64,24.99,0,22404,https://www.dkoldies.com/complete-madden-2002-n64/ +Complete Madden 2000 - N64,24.99,0,22209,https://www.dkoldies.com/complete-madden-2000-n64/ +Complete Jeopardy 64 - N64,24.99,0,22374,https://www.dkoldies.com/complete-jeopardy-64-n64/ +Complete F-1 Pole Position 64 - N64,24.99,0,22460,https://www.dkoldies.com/complete-f-1-pole-position-64-n64/ +Complete Duke Nukem Zero Hour - N64,24.99,0,19072,https://www.dkoldies.com/complete-duke-nukem-zero-hour-nintendo-n64/ +Complete Bust A Move 99 64 - N64,24.99,0,22377,https://www.dkoldies.com/complete-bust-a-move-99-64-n64/ +Complete Army Men Air Combat - N64,24.99,0,22309,https://www.dkoldies.com/complete-army-men-air-combat-n64/ +Complete Aero Gauge - N64,24.99,0,22225,https://www.dkoldies.com/complete-aero-gauge-n64/ +InterAct Super Pad 64 Black - N64 Controller,24.99,0,57129,https://www.dkoldies.com/interact-super-pad-64-black-n64-controller/ +Wave Race 64 N64 - Empty N64 Box,24.99,0,17186,https://www.dkoldies.com/wave-race-64-n64-empty-n64-box/ +WCW/NWO Revenge N64 - Empty N64 Box,24.99,0,17231,https://www.dkoldies.com/wcw-nwo-revenge-n64-empty-n64-box/ +Turok Rage Wars - Strategy Guide,24.99,0,30897,https://www.dkoldies.com/strategy-guide-turok-rage-wars-n64-nintendo-64/ +Tony Hawk's Pro Skater N64 - Empty N64 Box,24.99,0,17204,https://www.dkoldies.com/tony-hawks-pro-skater-n64-empty-n64-box/ +Super Smash Bros. - Brady Games Official Strategy Guide,24.99,0,30867,https://www.dkoldies.com/strategy-guide-super-smash-bros-bradygames-n64/ +Star Fox 64 - Official Nintendo Power Player's Guide,24.99,0,45582,https://www.dkoldies.com/star-fox-64-official-nintendo-power-players-guide/ +San Francisco Rush 2049 N64 - Empty N64 Box,24.99,0,17441,https://www.dkoldies.com/san-francisco-rush-2049-n64-empty-n64-box/ +Road Rash 64 N64 - Empty N64 Box,24.99,0,17302,https://www.dkoldies.com/road-rash-64-n64-empty-n64-box/ +Polaris SnoCross - N64 Manual,24.99,0,29871,https://www.dkoldies.com/polaris-snocross-n64-manual/ +Pokemon Stadium - Brady Games Official Strategy Guide,24.99,0,39371,https://www.dkoldies.com/pokemon-stadium-official-battle-guide-brady-games-n64/ +Pilot Wings 64 N64 - Empty N64 Box,24.99,0,17322,https://www.dkoldies.com/pilot-wings-64-n64-empty-n64-box/ +Performance Memory Card Plus - Nintendo 64 (N64),24.99,0,55586,https://www.dkoldies.com/performance-memory-card-plus-nintendo-64-n64/ +PGA European Tour 64 - N64 Manual,24.99,0,29848,https://www.dkoldies.com/pga-european-tour-64-n64-manual/ +Original Nintendo 64 Sports Travel Cartridge Case,24.99,0,49482,https://www.dkoldies.com/original-nintendo-64-sports-travel-cartridge-case/ +Original Colored N64 Controller - Acceptable,24.99,0,55761,https://www.dkoldies.com/original-colored-n64-controller-acceptable/ +New RetroBit Tribute Controller Red - N64,24.99,0,46012,https://www.dkoldies.com/new-retrobit-tribute-controller-red-n64/ +New RetroBit Tribute Controller Ocean Blue - N64,24.99,0,46023,https://www.dkoldies.com/new-retrobit-tribute-controller-ocean-blue-n64/ +New Replica Controller Clear Extreme Green - N64,24.99,0,41379,https://www.dkoldies.com/new-cirka-replica-controller-clear-jungle-green-n64/ +New Hyperkin Premium Captain Grey N64 Controller - N64,24.99,0,46035,https://www.dkoldies.com/new-hyperkin-premium-captain-grey-n64-controller-n64/ +Monopoly 64 N64 - Empty N64 Box,24.99,0,17342,https://www.dkoldies.com/monopoly-64-n64-empty-n64-box/ +Mischief Makers - N64 Manual,24.99,0,29822,https://www.dkoldies.com/mischief-makers-n64-manual/ +Midway's Greatest Arcade Hits Volume 1 N64 - Empty N64 Box,24.99,0,17333,https://www.dkoldies.com/midways-greatest-arcade-hits-volume-1-n64-empty-n64-box/ +Legend of Zelda Majora's Mask - Brady Games Official Strategy Guide,24.99,0,47634,https://www.dkoldies.com/legend-of-zelda-majoras-mask-brady-games-official-strategy-guide/ +Indiana Jones Infernal Machine - N64 Manual,24.99,0,29741,https://www.dkoldies.com/indiana-jones-internal-machine-n64-manual/ +Hydro Thunder - N64 Manual,24.99,0,29854,https://www.dkoldies.com/hydro-thunder-n64-manual/ +"Hey You, Pikachu! N64 - Empty N64 Box",24.99,0,17227,https://www.dkoldies.com/hey-you-pikachu-n64-empty-n64-box/ +Harvest Moon 64 - N64 Manual,24.99,0,29849,https://www.dkoldies.com/harvest-moon-64-n64-manual/ +Glover - Prima Strategy Guide,24.99,0,30885,https://www.dkoldies.com/strategy-guide-glover-prima-n64/ +Donkey Kong 64 - Prima Strategy Guide,24.99,0,30886,https://www.dkoldies.com/strategy-guide-donkey-kong-64-prima-n64-nintendo-64/ +Cruis'n World N64 - Empty N64 Box,24.99,0,17366,https://www.dkoldies.com/cruisn-world-n64-empty-n64-box/ +Complete N64 Performance SuperPad 64 Colors Controller Red,24.99,0,40986,https://www.dkoldies.com/complete-n64-performance-superpad-64-colors-controller-red/ +Banjo-Tooie - Official Nintendo Power Players Guide,24.99,0,45581,https://www.dkoldies.com/banjo-tooie-official-nintendo-power-players-guide/ +Banjo Tooie - N64 Manual,24.99,29.99,29805,https://www.dkoldies.com/banjo-tooie-n64-manual/ +Yoshi's Story - N64 Operation Card,23.99,0,47222,https://www.dkoldies.com/yoshis-story-n64-operation-card/ +Wayne Gretzky's 3D Hockey - N64 Game,23.99,21.99,23950,https://www.dkoldies.com/wayne-gretzkys-3d-hockey-n64-game/ +Complete Tony Hawk's Pro Skater 3 - N64,23.99,0,22462,https://www.dkoldies.com/complete-tony-hawks-pro-skater-3-n64/ +Complete Rayman 2 The Great Escape - N64,23.99,0,22406,https://www.dkoldies.com/complete-rayman-2-the-great-escape-n64/ +Iggy's Reckin Balls N64 - Empty N64 Box,23.99,0,17285,https://www.dkoldies.com/iggys-reckin-balls-n64-empty-n64-box/ +Bassmasters 2000 N64 - Empty N64 Box,23.99,0,17150,https://www.dkoldies.com/bassmasters-2000-n64-empty-n64-box/ +World Driver Championship - N64 Game,22.99,0,24005,https://www.dkoldies.com/world-driver-championship-n64-game/ +Shadow Man - N64 Game,22.99,24.99,23860,https://www.dkoldies.com/shadow-man-n64-game/ +NHL Breakaway 99 - N64 Game,22.99,0,24030,https://www.dkoldies.com/nhl-breakaway-99-n64-game/ +Mace The Dark Age - N64 Game,22.99,0,23931,https://www.dkoldies.com/mace-the-dark-age-n64-game/ +ECW Hardcore Revolution - N64 Game,22.99,29.99,23852,https://www.dkoldies.com/ecw-hardcore-revolution-n64-game/ +Complete Virtual Pool - N64,22.99,0,22189,https://www.dkoldies.com/complete-virtual-pool-n64/ +Complete 007 The World is Not Enough (Grey)- N64,22.99,0,22288,https://www.dkoldies.com/complete-007-the-world-is-not-enough-grey-n64/ +World Cup 98 N64 - Empty N64 Box,22.99,0,17162,https://www.dkoldies.com/world-cup-98-n64-empty-n64-box/ +San Francisco Rush Extreme Racing N64 - Empty N64 Box,22.99,0,17390,https://www.dkoldies.com/san-francisco-rush-extreme-racing-n64-empty-n64-box/ +Killer Instinct Gold - N64 Manual,22.99,32.99,29763,https://www.dkoldies.com/killer-instinct-gold-n64-manual/ +F-Zero X (FZero) - N64 Manual,22.99,0,29813,https://www.dkoldies.com/f-zero-x-fzero-n64-manual/ +Clay Fighter 63 1/3 - N64 Manual,22.99,0,29873,https://www.dkoldies.com/clay-fighter-63-1-3-n64-manual/ +Bio Freaks N64 - Empty N64 Box,22.99,0,17191,https://www.dkoldies.com/bio-freaks-n64-empty-n64-box/ +Namco Museum 64 - N64 Game,21.99,0,23881,https://www.dkoldies.com/namco-museum-64-n64-game/ +Blast Corps - N64 Game,21.99,29.99,23918,https://www.dkoldies.com/blast-corps-n64-game/ +Power Rangers Lightspeed Rescue - N64 Game,21.99,24.99,57015,https://www.dkoldies.com/power-rangers-lightspeed-rescue-n64-game-1/ +"Hey You, Pikachu! - N64 Game",21.99,0,23905,https://www.dkoldies.com/hey-you-pikachu-n64-game/ +Knife Edge Nose Gunner - N64 Game,21.99,0,23875,https://www.dkoldies.com/knife-edge-nose-gunner-n64-game/ +Forsaken 64 - N64 Game,21.99,0,23915,https://www.dkoldies.com/forsaken-64-nintendo-64-n64-game/ +Lode Runner 3D - N64 Game,21.99,24.99,23890,https://www.dkoldies.com/lode-runner-3d-n64-game/ +Mortal Kombat 4 - N64 Manual,21.99,0,29887,https://www.dkoldies.com/mortal-kombat-4-n64-manual/ +Monopoly - N64 Game,21.99,29.99,24021,https://www.dkoldies.com/monopoly-64-n64-game/ +Complete Battletanx - N64,21.99,0,22262,https://www.dkoldies.com/complete-battletanx-n64/ +Wayne Gretzky's 3D Hockey N64 - Empty N64 Box,21.99,0,17271,https://www.dkoldies.com/wayne-gretzkys-3d-hockey-n64-empty-n64-box/ +Rampage World Tour - N64 Manual,21.99,0,29806,https://www.dkoldies.com/rampage-world-tour-n64-manual/ +Dr Mario 64 - N64 Manual,21.99,28.99,29801,https://www.dkoldies.com/dr-mario-64-n64-manual/ +Banjo Kazooie - N64 Manual,21.99,24.99,29802,https://www.dkoldies.com/banjo-kazooie-n64-manual/ +"Tarzan, Disney's - N64 Manual",20.99,0,29682,https://www.dkoldies.com/tarzan-disneys-n64-manual/ +Chameleon Twist - N64 Manual,20.99,0,29895,https://www.dkoldies.com/chameleon-twist-n64-manual/ +Star Wars Episode 1 Racer - N64 Game,19.99,0,23913,https://www.dkoldies.com/star-wars-racer-episode-1-n64-game/ +WCW/NWO Revenge - N64 Game,19.99,25.99,23909,https://www.dkoldies.com/wcw-nwo-revenge-n64-game/ +Major League Baseball Ken Griffey Jr - N64 Game,19.99,0,23977,https://www.dkoldies.com/major-league-baseball-ken-griffey-jr-n64-game/ +Ken Griffey Jr.'s Slugfest - N64 Game,19.99,0,24112,https://www.dkoldies.com/ken-griffey-jr-s-slugfest-n64-game/ +Superman - N64 Game,19.99,24.99,23917,https://www.dkoldies.com/superman-n64-game/ +Monster Truck Madness - N64 Game,19.99,27.99,23946,https://www.dkoldies.com/monster-truck-madness-n64-game/ +Midway's Greatest Arcade Hits Volume 1 - N64 Game,19.99,24.99,24012,https://www.dkoldies.com/midways-greatest-arcade-hits-volume-1-n64-game/ +California Speed - N64 Game,19.99,22.99,23821,https://www.dkoldies.com/california-speed-n64-game/ +FIFA 98 Road To World Cup 64 - N64 Game,19.99,0,24037,https://www.dkoldies.com/fifa-98-road-to-world-cup-64-n64-game/ +Original AC Adapter - Nintendo 64 (N64),19.99,0,31684,https://www.dkoldies.com/original-ac-adapter-nintendo-64-n64/ +New Replica Rumble Pak - N64,19.99,0,55092,https://www.dkoldies.com/new-replica-rumble-pak-n64/ +VRU - Nintendo 64 (N64),19.99,0,45561,https://www.dkoldies.com/vru-nintendo-64-n64/ +New AC Adapter - Nintendo 64 (N64),19.99,0,55375,https://www.dkoldies.com/new-ac-adapter-nintendo-64-n64/ +Super Smash Bros. - N64 Manual,19.99,24.99,29745,https://www.dkoldies.com/super-smash-bros-n64-manual/ +Mario Golf - N64 Manual,19.99,0,29879,https://www.dkoldies.com/mario-golf-n64-manual/ +Donkey Kong 64 - N64 Manual,19.99,27.99,29742,https://www.dkoldies.com/donkey-kong-64-n64-manual/ +Army Men Sarge's Heroes 2 - N64 Manual,19.99,0,29918,https://www.dkoldies.com/army-men-sarges-heroes-2-n64-manual/ +Tetrisphere - N64 Game,19.99,24.99,23872,https://www.dkoldies.com/tetrisphere-n64-game/ +Wayne Gretzky's 3D Hockey '98 - N64 Game,19.99,0,24066,https://www.dkoldies.com/wayne-gretzkys-3d-hockey-98-n64-game/ +Madden 2002 - N64 Game,19.99,0,24053,https://www.dkoldies.com/madden-2002-n64-game/ +Bass Hunter 64 - N64 Game,19.99,21.99,24031,https://www.dkoldies.com/bass-hunter-64-n64-game/ +Virtual Chess 64 - N64 Game,19.99,24.99,23883,https://www.dkoldies.com/virtual-chess-64-n64-game/ +Olympic Hockey 98 - N64 Game,19.99,0,23896,https://www.dkoldies.com/olympic-hockey-98-n64-game/ +New WCW Mayhem - N64 Factory Sealed Game,19.99,0,19080,https://www.dkoldies.com/new-factory-sealed-wcw-mayhem-nintendo-n64/ +Dark Rift - N64 Game,19.99,0,23954,https://www.dkoldies.com/dark-rift-n64-game/ +Complete Wetrix - N64,19.99,0,22398,https://www.dkoldies.com/complete-wetrix-n64/ +Complete Virtual Chess 64 - N64,19.99,0,22234,https://www.dkoldies.com/complete-virtual-chess-64-n64/ +Complete Tigger's Honey Hunt - N64,19.99,0,22392,https://www.dkoldies.com/complete-tiggers-honey-hunt-n64/ +Complete Supercross 2000 - N64,19.99,0,22470,https://www.dkoldies.com/complete-supercross-2000-n64/ +Complete Rugrats in Paris The MOVIE - N64,19.99,0,22291,https://www.dkoldies.com/complete-rugrats-in-paris-the-movie-n64/ +Complete Ridge Racer 64 - N64,19.99,0,22311,https://www.dkoldies.com/complete-ridge-racer-64-n64/ +Complete NBA Jam 99 - N64,19.99,0,22335,https://www.dkoldies.com/complete-nba-jam-99-n64/ +Complete Jeremy Mcgrath Supercross 2000 - N64,19.99,0,22441,https://www.dkoldies.com/complete-jeremy-mcgrath-supercross-2000-n64/ +Complete International Superstar Soccer '98 - N64,19.99,0,22466,https://www.dkoldies.com/complete-international-superstar-soccer-98-n64/ +Complete Hybrid Heaven - N64,19.99,0,22461,https://www.dkoldies.com/complete-hybrid-heaven-n64/ +Complete Gex 3 Deep Cover Gecko - N64,19.99,0,22422,https://www.dkoldies.com/complete-gex-3-deep-cover-gecko-n64/ +Complete Bassmasters 2000 - N64,19.99,0,22179,https://www.dkoldies.com/complete-bassmasters-2000-n64/ +Performance Memory Card - Nintendo 64 (N64),19.99,0,55585,https://www.dkoldies.com/performance-memory-card-nintendo-64-n64/ +Yoshi's Story - Official Nintendo Power Players Guide,19.99,0,30884,https://www.dkoldies.com/yoshis-story-n64-players-guide-official-nintendo-64/ +Yoshi's Story - N64 Manual,19.99,0,29816,https://www.dkoldies.com/yoshis-story-n64-manual/ +Virtual Pool N64 - Empty N64 Box,19.99,0,17160,https://www.dkoldies.com/virtual-pool-n64-empty-n64-box/ +Turok Dinosaur Hunter - Brady Games Official Strategy Guide,19.99,0,49506,https://www.dkoldies.com/turok-dinosaur-hunter-brady-games-official-strategy-guide/ +Super Mario 64 Survival Guide - Strategy Guide,19.99,0,31782,https://www.dkoldies.com/super-mario-64-survival-guide-strategy-guide/ +Spider-Man N64 - Empty N64 Box,19.99,0,17256,https://www.dkoldies.com/spider-man-n64-empty-n64-box/ +South Park Chef's Luv Shack - N64 Manual,19.99,0,29779,https://www.dkoldies.com/south-park-chefs-luv-shack-n64-manual/ +South Park - N64 Manual,19.99,0,29773,https://www.dkoldies.com/south-park-n64-manual/ +Rugrats Scavenger Hunt N64 - Empty N64 Box,19.99,0,17278,https://www.dkoldies.com/rugrats-scavenger-hunt-n64-empty-n64-box/ +RF Switch / RF Modulator Complete in Box- Nintendo 64 (N64),19.99,0,41339,https://www.dkoldies.com/rf-switch-rf-modulator-complete-in-box-nintendo-64-n64/ +Pokemon Stadium N64 - Prima Official Game Guide,19.99,0,49307,https://www.dkoldies.com/pokemon-stadium-n64-prima-official-game-guide/ +Pokemon Stadium - N64 Manual,19.99,20.99,29916,https://www.dkoldies.com/pokemon-stadium-n64-manual/ +Pokemon Snap - N64 Manual,19.99,0,29709,https://www.dkoldies.com/pokemon-snap-n64-manual/ +Pokemon Puzzle League - N64 Manual,19.99,22.99,29783,https://www.dkoldies.com/pokemon-puzzle-league-n64-manual/ +Perfect Dark - Prima Strategy Guide,19.99,0,30888,https://www.dkoldies.com/strategy-guide-perfect-dark-prima-n64-nintendo-64/ +PC and Mac USB Controller Grey - Nintendo 64 (N64),19.99,0,31681,https://www.dkoldies.com/pc-mac-usb-controller-grey-n64/ +Original Memory Controller Pak - Nintendo 64 (N64),19.99,0,55601,https://www.dkoldies.com/original-memory-controller-pak-nintendo-64/ +Original Green Controller - Empty N64 Box,19.99,0,40285,https://www.dkoldies.com/original-green-controller-empty-n64-box/ +Original Gray Controller - Empty N64 Box,19.99,0,45019,https://www.dkoldies.com/original-gray-controller-empty-n64-box/ +Original Blue Controller - Empty N64 Box,19.99,0,41008,https://www.dkoldies.com/original-blue-controller-empty-n64-box/ +Original Black Controller - Empty N64 Box,19.99,0,40284,https://www.dkoldies.com/original-black-controller-empty-n64-box/ +New Tremor Pak - Nintendo 64 (N64),19.99,0,37607,https://www.dkoldies.com/new-tremor-pak-nintendo-64-n64/ +"New Tetris, The N64 - Empty N64 Box",19.99,0,17207,https://www.dkoldies.com/new-tetris-the-n64-empty-n64-box/ +NBA Jam 99 N64 - Empty N64 Box,19.99,24.99,17305,https://www.dkoldies.com/nba-jam-99-n64-empty-n64-box/ +NBA Courtside N64 - Empty N64 Box,19.99,0,17220,https://www.dkoldies.com/nba-courtside-n64-empty-n64-box/ +Mortal Kombat Trilogy - N64 Manual,19.99,0,29912,https://www.dkoldies.com/mortal-kombat-trilogy-n64-manual/ +Micro Machines 64 Turbo N64 - Empty N64 Box,19.99,0,17337,https://www.dkoldies.com/micro-machines-64-turbo-n64-empty-n64-box/ +Jet Force Gemini N64 - Official Nintendo Player's Guide,19.99,0,30874,https://www.dkoldies.com/players-guide-jet-force-gemini-n64-official-nintendo-64/ +Hexen N64 - Empty N64 Box,19.99,0,17399,https://www.dkoldies.com/hexen-n64-empty-n64-box/ +GoldenEye 007 N64 - Official Nintendo Player's Guide,19.99,0,30873,https://www.dkoldies.com/players-guide-goldeneye-007-n64-official-nintendo-64/ +GameShark V.3 - Nintendo 64,19.99,19.99,55591,https://www.dkoldies.com/gameshark-v-3-nintendo-64/ +GamePro Gear Memory Card 4X - N64,19.99,0,37523,https://www.dkoldies.com/gamepro-gear-memory-card-4x-n64/ +Expansion Pak - Empty N64 Box,19.99,0,31742,https://www.dkoldies.com/expansion-pak-empty-n64-box/ +Donkey Kong 64 - Official Nintendo 64 Player's Guide,19.99,0,30872,https://www.dkoldies.com/donkey-kong-64-n64-official-nintendo-64-players-guide/ +Diddy Kong Racing N64 - Official Nintendo Player's Guide,19.99,22.99,30871,https://www.dkoldies.com/diddy-kong-racing-n64-official-nintendo-players-guide/ +Castlevania - N64 Manual,19.99,0,29722,https://www.dkoldies.com/castlevania-n64-manual/ +Buck Bumble - N64 Manual,19.99,0,29899,https://www.dkoldies.com/buck-bumble-n64-manual/ +Battletanx N64 - Empty N64 Box,19.99,0,17233,https://www.dkoldies.com/battletanx-n64-empty-n64-box/ +Banjo-Tooie - Prima Strategy Guide,19.99,0,45583,https://www.dkoldies.com/banjo-tooie-prima-strategy-guide/ +Banjo Kazooie - Prima Strategy Guide,19.99,0,42186,https://www.dkoldies.com/strategy-guide-banjo-kazooie-prima-nintendo-64/ +Aidyn Chronicles The First Mage N64 - Empty N64 Box,19.99,0,17221,https://www.dkoldies.com/aidyn-chronicles-the-first-mage-n64-empty-n64-box/ +Turok 2 Seeds of Evil - N64 Game,18.99,21.99,23888,https://www.dkoldies.com/turok-2-seeds-of-evil-n64-game/ +Mission Impossible - N64 Game,18.99,0,23846,https://www.dkoldies.com/mission-impossible-n64-game/ +Fox Sports College Hoops 99 - N64 Game,18.99,9.99,23843,https://www.dkoldies.com/fox-sports-college-hoops-99-n64-game/ +Rugrats in Paris The Movie - N64 Game*,18.99,22.99,23940,https://www.dkoldies.com/rugrats-in-paris-the-movie-n64-game/ +Bottom of The 9TH - N64 Game,18.99,0,23985,https://www.dkoldies.com/bottom-of-the-9th-n64-game/ +Super Smash Bros - Prima Strategy Guide,18.99,0,30889,https://www.dkoldies.com/strategy-guide-super-smash-bros-prima-n64-nintendo-64/ +Duke Nukem Zero Hour - N64 Manual,18.99,0,29739,https://www.dkoldies.com/duke-nukem-zero-hour-n64-manual/ +Body Harvest - N64 Manual,18.99,0,29710,https://www.dkoldies.com/body-harvest-n64-manual/ +"Bug's Life, Disney's A - N64 Game",17.99,0,23845,https://www.dkoldies.com/bugs-life-disneys-a-n64-game/ +Mia Hamm Soccer - N64 Game,17.99,19.99,23983,https://www.dkoldies.com/mia-hamm-soccer-n64-game/ +Jeremy Mcgrath Supercross 2000 - N64 Game,17.99,0,24090,https://www.dkoldies.com/jeremy-mcgrath-supercross-2000-n64-game/ +Tony Hawk's Pro Skater 2 - N64 Manual,17.99,0,29706,https://www.dkoldies.com/tony-hawks-pro-skater-2-n64-manual/ +Roadsters - N64 Game,17.99,0,23978,https://www.dkoldies.com/roadsters-n64-game/ +Jeopardy! - N64 Game,17.99,19.99,24023,https://www.dkoldies.com/jeopardy-64-n64-game/ +Nagano Winter Olympics '98 - N64 Game,17.99,19.99,23919,https://www.dkoldies.com/nagano-winter-olympics-98-n64-game/ +"Complete Xena Warrior Princess, The - N64",17.99,0,22322,https://www.dkoldies.com/complete-xena-warrior-princess-the-n64/ +Complete Rat Attack - N64,17.99,0,22237,https://www.dkoldies.com/complete-rat-attack-n64/ +Complete Duke Nukem: Zero Hour - N64,17.99,0,22275,https://www.dkoldies.com/complete-duke-nukem-zero-hour-n64/ +Complete Donald Duck Goin Quakers - N64,17.99,0,22435,https://www.dkoldies.com/complete-donald-duck-goin-quakers-n64/ +Bassmasters 2000 - N64 Game,17.99,0,23828,https://www.dkoldies.com/bassmasters-2000-n64-game/ +Superman N64 - Empty N64 Box,17.99,0,17239,https://www.dkoldies.com/superman-n64-empty-n64-box/ +Spider-Man - N64 Manual,17.99,0,29749,https://www.dkoldies.com/spider-man-n64-manual/ +Sharpshooter N64 Thumbstick - Nintendo 64,17.99,0,49655,https://www.dkoldies.com/sharpshooter-n64-thumbstick-nintendo-64/ +RetroBit Tribute Controller Forest Green - N64,17.99,24.99,46013,https://www.dkoldies.com/retrobit-tribute-controller-forest-green-n64/ +Quake II - N64 Manual,17.99,0,29744,https://www.dkoldies.com/quake-ii-n64-manual/ +"New Tetris, The - N64 Manual",17.99,0,29700,https://www.dkoldies.com/new-tetris-the-n64-manual/ +NBA Jam 2000 - N64 Manual,17.99,0,29933,https://www.dkoldies.com/nba-jam-2000-n64-manual/ +NASCAR 99 - N64 Manual,17.99,2.99,29907,https://www.dkoldies.com/nascar-99-n64-manual/ +Major League Baseball Ken Griffey Jr N64 - Empty N64 Box,17.99,0,17298,https://www.dkoldies.com/major-league-baseball-ken-griffey-jr-n64-empty-n64-box/ +International Track & Field 2000 - N64 Manual,17.99,0,29929,https://www.dkoldies.com/international-track-field-2000-n64-manual/ +Gex 3 Deep Cover Gecko - N64 Manual,17.99,0,29885,https://www.dkoldies.com/gex-3-deep-cover-gecko-n64-manual/ +Bomberman 64 (Bomber Man) - N64 Manual,17.99,21.99,29762,https://www.dkoldies.com/bomberman-64-bomber-man-n64-manual/ +Aerofighters Assault N64 - Empty N64 Box,17.99,0,17243,https://www.dkoldies.com/aerofighters-assault-n64-empty-n64-box/ +Knockout Kings 2000 - N64 Game,16.99,19.99,23848,https://www.dkoldies.com/knockout-kings-2000-n64-game/ +Rugrats Scavenger Hunt - N64 Game,16.99,19.99,23957,https://www.dkoldies.com/rugrats-scavenger-hunt-n64-game/ +WCW Nitro - N64 Game,16.99,21.99,23923,https://www.dkoldies.com/wcw-nitro-n64-game/ +War Gods - N64 Game,16.99,17.99,24091,https://www.dkoldies.com/war-gods-n64-game/ +WCW Backstage Assault - N64 Game,16.99,0,24044,https://www.dkoldies.com/wcw-backstage-assault-n64-game/ +F1 Pole Position - N64 Game,16.99,19.99,55508,https://www.dkoldies.com/f1-pole-position-n64-game/ +New Hexen - N64 Factory Sealed Game,16.99,0,19074,https://www.dkoldies.com/new-factory-sealed-hexen-nintendo-n64/ +FIFA Soccer 64 - N64 Game,16.99,19.99,24013,https://www.dkoldies.com/fifa-soccer-64-n64-game/ +Vigilante 8 - N64 Manual,16.99,0,29902,https://www.dkoldies.com/vigilante-8-n64-manual/ +Rugrats in Paris The MOVIE N64 - Empty N64 Box,16.99,0,17261,https://www.dkoldies.com/rugrats-in-paris-the-movie-n64-empty-n64-box/ +Road Rash 64 - N64 Manual,16.99,0,29795,https://www.dkoldies.com/road-rash-64-n64-manual/ +Mortal Kombat Trilogy N64 - Empty N64 Box,16.99,0,17419,https://www.dkoldies.com/mortal-kombat-trilogy-n64-empty-n64-box/ +Killer Instinct Gold - Empty N64 Box,16.99,0,17270,https://www.dkoldies.com/killer-instinct-gold-n64-empty-n64-box/ +In The Zone 99 - N64 Game,15.99,21.99,23897,https://www.dkoldies.com/in-the-zone-99-n64-game/ +Top Gear Overdrive - N64 Game,15.99,0,24095,https://www.dkoldies.com/topgear-overdrive-n64-game/ +GT64 Championship Ed. - N64 Game,15.99,0,24007,https://www.dkoldies.com/gt64-championship-ed-n64-game/ +NBA Jam 99 - N64 Game,15.99,0,23984,https://www.dkoldies.com/nba-jam-99-n64-game/ +Ridge Racer 64 - N64 Game,15.99,0,23960,https://www.dkoldies.com/ridge-racer-64-n64-game/ +Battletanx Global Assault (Battle Tanx) - N64 Manual,15.99,0,29888,https://www.dkoldies.com/battletanx-global-assault-battle-tanx-n64-manual/ +WCW vs. NWO World Tour - N64 Game,14.99,19.99,23857,https://www.dkoldies.com/wcw-vs-nwo-world-tour-n64-game/ +Extreme-G - N64 Game,14.99,19.99,24062,https://www.dkoldies.com/extreme-g-n64-game/ +Madden 2000 - N64 Game,14.99,0,23858,https://www.dkoldies.com/madden-2000-n64-game/ +Supercross 2000 - N64 Game,14.99,0,24118,https://www.dkoldies.com/supercross-2000-n64-game/ +All Star Baseball 2001 - N64 Game,14.99,19.99,23990,https://www.dkoldies.com/all-star-baseball-2001-n64-game/ +NFL Quarterback Club 2001 - N64 Game,14.99,24.99,23941,https://www.dkoldies.com/nfl-quarterback-club-2001-n64-game/ +MRC Multi Racing Championship - N64 Game,14.99,19.99,24009,https://www.dkoldies.com/mrc-multi-racing-championship-n64-game/ +Original Performance Tremor Pak Plus - N64,14.99,0,55590,https://www.dkoldies.com/original-tremor-pak-plus-n64/ +Generic Rumble Pak - N64,14.99,0,55588,https://www.dkoldies.com/generic-rumble-pak-n64/ +Virtual Pool - N64 Game,14.99,0,23838,https://www.dkoldies.com/virtual-pool-n64-game/ +Complete World Cup 98 - N64,14.99,0,22191,https://www.dkoldies.com/complete-world-cup-98-n64/ +Complete V-Rally Edition 99 - N64,14.99,0,22182,https://www.dkoldies.com/complete-v-rally-edition-99-n64/ +Complete Top Gear Rally 2 - N64,14.99,0,22368,https://www.dkoldies.com/complete-top-gear-rally-2-n64/ +Complete Quake II - N64,14.99,0,22280,https://www.dkoldies.com/complete-quake-ii-n64/ +Complete Powerpuff Girls Chemical X Traction - N64,14.99,0,22421,https://www.dkoldies.com/complete-powerpuff-girls-chemical-x-traction-n64/ +Complete FIFA Soccer 64 - N64,14.99,0,22364,https://www.dkoldies.com/complete-fifa-soccer-64-n64/ +Complete Bass Hunter 64 - N64,14.99,0,22382,https://www.dkoldies.com/complete-bass-hunter-64-n64/ +Wrestlemania 2000 - N64 Manual,14.99,0,29927,https://www.dkoldies.com/wrestlemania-2000-n64-manual/ +WWF No Mercy - Prima Strategy Guide,14.99,0,30890,https://www.dkoldies.com/strategy-guide-wwf-no-mercy-prima-n64-nintendo-64/ +WCW vs. NWO World Tour N64 - Empty N64 Box,14.99,0,17179,https://www.dkoldies.com/wcw-vs-nwo-world-tour-n64-empty-n64-box/ +UltraRacer 64 - Nintendo N64 Controller,14.99,0,57074,https://www.dkoldies.com/ultraracer-64-nintendo-n64-controller/ +Turok Dinosaur Hunter - Prima's Official Game Secrets,14.99,19.99,39362,https://www.dkoldies.com/turok-dinosaur-hunter-primas-official-game-secrets/ +Turok 2 Seeds of Evil - Prima's Official Strategy Guide,14.99,0,39361,https://www.dkoldies.com/turok-2-seeds-of-evil-primas-official-strategy-guide/ +Turok 2 N64 & GameBoy - Aklaim Strategy Guide,14.99,0,30896,https://www.dkoldies.com/strategy-guide-turok-2-n64-game-boy/ +Transformers Beast Wars Transmetals N64 - Empty N64 Box,14.99,0,17293,https://www.dkoldies.com/transformers-beast-wars-transmetals-n64-empty-n64-box/ +Tonic Trouble - Prima Strategy Guide,14.99,0,30895,https://www.dkoldies.com/strategy-guide-tonic-trouble-prima-n64-nintendo-64/ +Super Mario 64 Totally Unauthorized N64 - Brady Games Official Strategy Guide,14.99,0,49564,https://www.dkoldies.com/super-mario-64-totally-unauthorized-n64-bradygames-official-game-guide/ +Super Mario 64 - N64 Manual,14.99,19.99,29692,https://www.dkoldies.com/super-mario-64-n64-manual/ +Star Wars Shadows of Empire Game Secrets N64 - Prima Secrets Official Game Guide,14.99,0,49438,https://www.dkoldies.com/star-wars-shadows-of-empire-game-secrets-n64-prima-secrets-official-game-guide/ +Star Wars Racer N64 - Official Nintendo Player's Guide,14.99,0,30879,https://www.dkoldies.com/players-guide-star-wars-racer-n64-official-nintendo-64/ +Star Fox 64 - Prima Strategy Guide,14.99,0,30894,https://www.dkoldies.com/strategy-guide-star-fox-64-prima-n64-nintendo-64/ +Star Fox 64 - N64 Manual,14.99,0,29889,https://www.dkoldies.com/star-fox-64-n64-manual/ +Star Craft 64 N64 - Empty N64 Box,14.99,0,17146,https://www.dkoldies.com/star-craft-64-n64-empty-n64-box/ +Space Invaders - N64 Manual,14.99,0,29641,https://www.dkoldies.com/space-invaders-n64-manual/ +Shadow Man - N64 Manual,14.99,0,29675,https://www.dkoldies.com/shadow-man-n64-manual/ +"Scooby-Doo!, Classic Creep Capers - N64 Manual",14.99,0,29648,https://www.dkoldies.com/scooby-doo-classic-creep-capers-n64-manual/ +Scars - N64 Manual,14.99,0,29796,https://www.dkoldies.com/scars-n64-manual/ +Rocket Robot on Wheels - N64 Manual,14.99,0,29897,https://www.dkoldies.com/rocket-robot-on-wheels-n64-manual/ +Pilot Wings 64 - N64 Manual,14.99,0,29815,https://www.dkoldies.com/pilot-wings-64-n64-manual/ +Perfect Dark N64 - Official Nintendo Player's Guide,14.99,0,30877,https://www.dkoldies.com/players-guide-perfect-dark-n64-official-nintendo-64/ +Perfect Dark - N64 Manual,14.99,0,29915,https://www.dkoldies.com/perfect-dark-n64-manual/ +Original Rumble Pak - Empty N64 Box With Insert,14.99,0,42069,https://www.dkoldies.com/original-rumble-pak-empty-n64-box-with-insert/ +Original Rumble Pak - Empty N64 Box,14.99,0,36717,https://www.dkoldies.com/original-rumble-pak-empty-n64-box/ +Off Road Challenge - N64 Manual,14.99,0,29770,https://www.dkoldies.com/off-road-challenge-n64-manual/ +Nuclear Strike 64 - N64 Manual,14.99,0,29829,https://www.dkoldies.com/nuclear-strike-64-n64-manual/ +NFL Blitz 2001 N64 - Empty N64 Box,14.99,0,17316,https://www.dkoldies.com/nfl-blitz-2001-n64-empty-n64-box/ +NFL Blitz - Brady Games Official Player's Guide,14.99,0,57058,https://www.dkoldies.com/nfl-blitz-brady-games-official-players-guide/ +Mortal Kombat 4 N64 - Empty N64 Box,14.99,0,17394,https://www.dkoldies.com/mortal-kombat-4-n64-empty-n64-box/ +Mission Impossible N64 - Empty N64 Box,14.99,0,17168,https://www.dkoldies.com/mission-impossible-n64-empty-n64-box/ +Mario Tennis N64 - Empty N64 Box,14.99,0,17250,https://www.dkoldies.com/mario-tennis-n64-empty-n64-box/ +Mario Kart 64 (Yellow) - N64 Manual,14.99,39.99,29863,https://www.dkoldies.com/mario-kart-64-yellow-n64-manual/ +MRC Multi Racing Championship N64 - Empty N64 Box,14.99,0,17330,https://www.dkoldies.com/mrc-multi-racing-championship-n64-empty-n64-box/ +Gex 64 Enter The Gecko - N64 Manual,14.99,0,29694,https://www.dkoldies.com/gex-64-enter-the-gecko-n64-manual/ +GameShark V.2 - Nintendo 64,14.99,19.99,24096,https://www.dkoldies.com/gameshark-v-2-nintendo-64/ +Flying Dragon - N64 Manual,14.99,0,29652,https://www.dkoldies.com/flying-dragon-n64-manual/ +ExtremeG N64 - Empty N64 Box,14.99,0,17383,https://www.dkoldies.com/extremeg-n64-empty-n64-box/ +Donkey Kong 64 N64 - Official Versus Perfect Guide,14.99,0,49998,https://www.dkoldies.com/donkey-kong-64-official-perfect-guide-n64-versus-series/ +Donkey Kong 64 - Brady Games Official Strategy Guide,14.99,0,42182,https://www.dkoldies.com/strategy-guide-donkey-kong-64-brady-n64-nintendo-64/ +Destruction Derby - N64 Manual,14.99,0,29759,https://www.dkoldies.com/destruction-derby-n64-manual/ +Command & Conquer - N64 Manual,14.99,0,29748,https://www.dkoldies.com/command-conquer-n64-manual/ +Chameleon Twist N64 - Empty N64 Box,14.99,0,17402,https://www.dkoldies.com/chameleon-twist-n64-empty-n64-box/ +"Bug's life, Disney's A N64 - Empty N64 Box",14.99,0,17167,https://www.dkoldies.com/bugs-life-disneys-a-n64-empty-n64-box/ +Bomberman Hero - N64 Manual,14.99,0,29681,https://www.dkoldies.com/bomberman-hero-n64-manual/ +Aidyn Chronicles The First Mage - N64 Manual,14.99,19.99,29714,https://www.dkoldies.com/aidyn-chronicles-the-first-mage-n64-manual/ +Twisted Edge Extreme Snowboarding - N64 Game,13.99,0,23871,https://www.dkoldies.com/twisted-edge-extreme-snowboarding-n64-game/ +Complete Nuclear Strike 64 - N64,13.99,0,22366,https://www.dkoldies.com/complete-nuclear-strike-64-n64/ +Complete LEGO Racers - N64,13.99,0,22414,https://www.dkoldies.com/complete-lego-racers-n64/ +Complete Iggy's Reckin Balls - N64,13.99,0,22315,https://www.dkoldies.com/complete-iggys-reckin-balls-n64/ +Complete Hot Wheels Turbo Racing - N64,13.99,0,22418,https://www.dkoldies.com/complete-hot-wheels-turbo-racing-n64/ +Complete Flying Dragon - N64,13.99,0,22188,https://www.dkoldies.com/complete-flying-dragon-n64/ +South Park N64 - Empty N64 Box,13.99,0,17280,https://www.dkoldies.com/south-park-n64-empty-n64-box/ +Ms. Pac-Man Maze Madness - N64 Manual,13.99,0,29650,https://www.dkoldies.com/ms-pac-man-maze-madness-n64-manual/ +Cruis'n World - N64 Manual,13.99,0,29859,https://www.dkoldies.com/cruisn-world-n64-manual/ +WWF War Zone - N64 Game,12.99,16.99,23844,https://www.dkoldies.com/wwf-war-zone-n64-game/ +In The Zone 98 - N64 Game,12.99,0,23900,https://www.dkoldies.com/in-the-zone-98-n64-game/ +Madden 2001 - N64 Game,12.99,0,23922,https://www.dkoldies.com/madden-2001-n64-game/ +Extreme-G 2 (XG2) - N64 Game,12.99,21.99,24000,https://www.dkoldies.com/extreme-g-2-xg2-n64-game/ +Madden Football 64 - N64 Game,12.99,0,23853,https://www.dkoldies.com/madden-football-64-n64-game/ +Triple Play 2000 - N64 Game,12.99,0,23979,https://www.dkoldies.com/triple-play-2000-n64-game/ +New Replica Memory Pak - N64,12.99,0,55093,https://www.dkoldies.com/new-replica-memory-pak-n64/ +Original Performance Tremor Pak - N64,12.99,0,55589,https://www.dkoldies.com/original-tremor-pak-n64/ +Complete Off Road Challenge - N64,12.99,0,22307,https://www.dkoldies.com/complete-off-road-challenge-n64/ +WinBack Covert Operations - N64 Manual,12.99,0,29820,https://www.dkoldies.com/winback-covert-operations-n64-manual/ +WWF No Mercy N64 - Empty N64 Box,12.99,0,17421,https://www.dkoldies.com/wwf-no-mercy-n64-empty-n64-box/ +Vigilante 8 N64 - Empty N64 Box,12.99,0,17409,https://www.dkoldies.com/vigilante-8-n64-empty-n64-box/ +"Toy Story 2, Disney's - N64 Manual",12.99,0,29727,https://www.dkoldies.com/toy-story-2-disneys-n64-manual/ +Robotron 64 - N64 Manual,12.99,0,29825,https://www.dkoldies.com/robotron-64-n64-manual/ +Rayman 2 The Great Escape - N64 Manual,12.99,0,29869,https://www.dkoldies.com/rayman-2-the-great-escape-n64-manual/ +Quest 64 - N64 Manual,12.99,0,29747,https://www.dkoldies.com/quest-64-n64-manual/ +Quake - N64 Manual,12.99,0,29767,https://www.dkoldies.com/quake-n64-manual/ +NFL Blitz 2000 - N64 Manual,12.99,0,29808,https://www.dkoldies.com/nfl-blitz-2000-n64-manual/ +NBA Courtside 2 - N64 Manual,12.99,0,29719,https://www.dkoldies.com/nba-courtside-2-n64-manual/ +NASCAR 2000 N64 - Empty N64 Box,12.99,0,17224,https://www.dkoldies.com/nascar-2000-n64-empty-n64-box/ +Mortal Kombat Mythologies SubZero N64 - Empty N64 Box,12.99,0,17331,https://www.dkoldies.com/mortal-kombat-mythologies-subzero-n64-empty-n64-box/ +Monopoly 64 - N64 Manual,12.99,0,29835,https://www.dkoldies.com/monopoly-64-n64-manual/ +Mickey's Speedway USA - N64 Manual,12.99,0,29765,https://www.dkoldies.com/mickeys-speedway-usa-n64-manual/ +Mario Tenis N64 - Prima Strategy Guide,12.99,0,31784,https://www.dkoldies.com/mario-tenis-n64-strategy-guide-prima/ +Madden 2001 - Empty N64 Box,12.99,0,17244,https://www.dkoldies.com/madden-2001-empty-n64-box/ +Mace The Dark Age - N64 Manual,12.99,0,29746,https://www.dkoldies.com/mace-the-dark-age-n64-manual/ +LEGO Racers - N64 Manual,12.99,0,29877,https://www.dkoldies.com/lego-racers-n64-manual/ +International Superstar Soccer 64 - N64 Manual,12.99,0,29788,https://www.dkoldies.com/international-superstar-soccer-64-n64-manual/ +Hybrid Heaven - N64 Manual,12.99,0,29924,https://www.dkoldies.com/hybrid-heaven-n64-manual/ +Hot Wheels Turbo Racing - N64 Manual,12.99,0,29881,https://www.dkoldies.com/hot-wheels-turbo-racing-n64-manual/ +Hercules The Legendary Journeys - N64 Manual,12.99,0,29862,https://www.dkoldies.com/hercules-the-legendary-journeys-n64-manual/ +Glover - N64 Manual,12.99,0,29917,https://www.dkoldies.com/glover-n64-manual/ +Generic Memory Card Plus - Nintendo 64 (N64),12.99,11.99,55584,https://www.dkoldies.com/generic-memory-card-plus-nintendo-64-n64/ +FIFA 99 - N64 Manual,12.99,0,29875,https://www.dkoldies.com/fifa-99-n64-manual/ +Diddy Kong Racing - Brady Games Official Strategy Guide,12.99,0,30866,https://www.dkoldies.com/strategy-guide-diddy-kong-racing-bradygames-n64/ +Beetle Adventure Racing - N64 Manual,12.99,0,29847,https://www.dkoldies.com/beetle-adventure-racing-n64-manual/ +007 The World is Not Enough - N64 Manual,12.99,0,29752,https://www.dkoldies.com/007-the-world-is-not-enough-n64-manual/ +Wheel of Fortune - N64 Game,11.99,22.99,23832,https://www.dkoldies.com/wheel-of-fortune-n64-game/ +NASCAR 2000 - N64 Game,11.99,0,23902,https://www.dkoldies.com/nascar-2000-n64-game/ +3rd Party Controller - Nintendo 64 (N64),11.99,14.99,55333,https://www.dkoldies.com/3rd-party-controller-nintendo-64-n64/ +Automobili Lamborghini - N64 Game,11.99,12.99,23936,https://www.dkoldies.com/automobili-lamborghini-n64-game/ +Complete Twisted Edge - N64,11.99,0,22222,https://www.dkoldies.com/complete-twisted-edge-n64/ +Complete Penny Racers - N64,11.99,0,22407,https://www.dkoldies.com/complete-penny-racers-n64/ +Complete NFL Blitz Special Edition 64 - N64,11.99,0,22375,https://www.dkoldies.com/complete-nfl-blitz-special-edition-64-n64/ +Complete Monaco Grand Prix - N64,11.99,0,22468,https://www.dkoldies.com/complete-monaco-grand-prix-n64/ +Complete Knife Edge Nose Gunner - N64,11.99,0,22226,https://www.dkoldies.com/complete-knife-edge-nose-gunner-n64/ +Complete Daikatana - N64,11.99,0,22295,https://www.dkoldies.com/complete-daikatana-n64/ +Worms Armageddon N64 - Empty N64 Box,11.99,0,17442,https://www.dkoldies.com/worms-armageddon-n64-empty-n64-box/ +WWF War Zone N64 - Empty N64 Box,11.99,0,17166,https://www.dkoldies.com/wwf-war-zone-n64-empty-n64-box/ +Turok Dinosaur Hunter - N64 Manual,11.99,0,29721,https://www.dkoldies.com/turok-dinosaur-hunter-n64-manual/ +Star Wars Shadows of The Empire - N64 Manual,11.99,0,29678,https://www.dkoldies.com/star-wars-shadows-of-the-empire-n64-manual/ +Shadow Man N64 - Empty N64 Box,11.99,0,17182,https://www.dkoldies.com/shadow-man-n64-empty-n64-box/ +Rush 2 Extreme Racing USA - N64 Manual,11.99,0,29864,https://www.dkoldies.com/rush-2-extreme-racing-usa-n64-manual/ +Nightmare Creatures N64 - Empty N64 Box,11.99,0,17260,https://www.dkoldies.com/nightmare-creatures-n64-empty-n64-box/ +Mike Piazza's StrikeZone N64 - Empty N64 Box,11.99,0,17353,https://www.dkoldies.com/mike-piazzas-strikezone-n64-empty-n64-box/ +Micro Machines 64 Turbo - N64 Manual,11.99,0,29830,https://www.dkoldies.com/micro-machines-64-turbo-n64-manual/ +Madden 2002 N64 - Empty N64 Box,11.99,0,17374,https://www.dkoldies.com/madden-2002-n64-empty-n64-box/ +F1 World Grand Prix N64 - Empty N64 Box,11.99,0,17314,https://www.dkoldies.com/f1-world-grand-prix-n64-empty-n64-box/ +Chopper Attack N64 - Empty N64 Box,11.99,0,17282,https://www.dkoldies.com/chopper-attack-n64-empty-n64-box/ +Chameleon Twist 2 - N64 Manual,11.99,0,29903,https://www.dkoldies.com/chameleon-twist-2-n64-manual/ +Castlevania Legacy of Darkness N64 - Empty N64 Box,11.99,0,17230,https://www.dkoldies.com/castlevania-legacy-of-darkness-n64-empty-n64-box/ +Bust a Move 2 Arcade Edition - N64 Manual,11.99,0,29901,https://www.dkoldies.com/bust-a-move-2-arcade-edition-n64-manual/ +Battletanx - N64 Manual,11.99,0,29726,https://www.dkoldies.com/battletanx-n64-manual/ +Batman Beyond Return of Joker - N64 Manual,11.99,0,29900,https://www.dkoldies.com/batman-beyond-return-of-joker-n64-manual/ +Army Men Sarge's Heroes - N64 Manual,11.99,0,29781,https://www.dkoldies.com/army-men-sarges-heroes-n64-manual/ +WWF Attitude - N64 Game,10.99,14.99,23851,https://www.dkoldies.com/wwf-attitude-n64-game/ +WCW/NWO Revenge - N64 Manual,10.99,0,29724,https://www.dkoldies.com/wcw-nwo-revenge-n64-manual/ +San Francisco Rush Extreme Racing - N64 Manual,10.99,0,29883,https://www.dkoldies.com/san-francisco-rush-extreme-racing-n64-manual/ +NBA Hang Time - N64 Manual,10.99,0,29872,https://www.dkoldies.com/nba-hang-time-n64-manual/ +Chopper Attack - N64 Manual,10.99,0,29775,https://www.dkoldies.com/chopper-attack-n64-manual/ +WCW Mayhem - N64 Game,9.99,17.99,23859,https://www.dkoldies.com/wcw-mayhem-n64-game/ +NFL Quarterback Club 99 - N64 Game,9.99,0,23862,https://www.dkoldies.com/nfl-quarterback-club-99-n64-game/ +New Replacement Thumbstick - Nintendo 64 (N64),9.99,14.99,55332,https://www.dkoldies.com/new-replacement-thumbstick-nintendo-64-n64/ +Original Jumper Pak - Nintendo 64 (N64),9.99,12.99,55377,https://www.dkoldies.com/original-jumper-pak-nintendo-64-n64/ +Wave Race 64 - N64 Manual,9.99,0,29679,https://www.dkoldies.com/wave-race-64-n64-manual/ +007 GoldenEye (James Bond) - N64 Manual,9.99,11.99,29671,https://www.dkoldies.com/007-goldeneye-james-bond-n64-manual/ +Complete Wayne Gretzkys 3D Hockey 98 - N64,9.99,0,19096,https://www.dkoldies.com/complete-wayne-gretskys-3d-hockey-98-nintendo-n64/ +Complete Tony Hawk's Pro Skater 2 - N64,9.99,0,22242,https://www.dkoldies.com/complete-tony-hawks-pro-skater-2-n64/ +Complete Razor Freestyle Scooter - N64,9.99,0,22445,https://www.dkoldies.com/complete-razor-freestyle-scooter-n64/ +Complete PGA European Tour 64 - N64,9.99,0,22385,https://www.dkoldies.com/complete-pga-european-tour-64-n64/ +Complete Gameshark - N64,9.99,0,22447,https://www.dkoldies.com/complete-gameshark-n64/ +Complete Deadly Arts - N64,9.99,0,22456,https://www.dkoldies.com/complete-deadly-arts-n64/ +Complete Cyber Tiger Woods Golf - N64,9.99,0,22227,https://www.dkoldies.com/complete-cyber-tiger-woods-golf-n64/ +Generic Memory Card - Nintendo 64 (N64),9.99,11.99,36906,https://www.dkoldies.com/generic-memory-card-nintendo-64-n64/ +Worms Armageddon - N64 Manual,9.99,0,29936,https://www.dkoldies.com/worms-armageddon-n64-manual/ +World Cup 98 - N64 Manual,9.99,0,29655,https://www.dkoldies.com/world-cup-98-n64-manual/ +Wetrix - N64 Manual,9.99,0,29861,https://www.dkoldies.com/wetrix-n64-manual/ +Wayne Gretzky's 3D Hockey - N64 Manual,9.99,0,29764,https://www.dkoldies.com/wayne-gretzkys-3d-hockey-n64-manual/ +WCW Nitro - N64 Manual,9.99,0,29738,https://www.dkoldies.com/wcw-nitro-n64-manual/ +Turok Rage Wars - N64 Manual,9.99,0,29683,https://www.dkoldies.com/turok-rage-wars-n64-manual/ +Transformers Beast Wars Transmetals - N64 Manual,9.99,0,29786,https://www.dkoldies.com/transformers-beast-wars-transmetals-n64-manual/ +Totally Unauthorized Goldeneye 007 N64 - Brady Games Official Strategy Guide,9.99,0,49857,https://www.dkoldies.com/goldeneye-007-n64-bradygames-official-game-guide/ +Super Mario 64 Game Secrets Unauthorized N64 - Prima Official Game Guide,9.99,0,49562,https://www.dkoldies.com/super-mario-64-game-secrets-unauthorized-n64-prima-official-game-guide/ +Star Wars Shadows of the Empire - Prima's Game Secrets,9.99,0,39364,https://www.dkoldies.com/star-wars-shadows-of-the-empire-primas-game-secrets/ +Star Wars Rogue Squadron Players Choice - Empty N64 Box,9.99,0,43816,https://www.dkoldies.com/star-wars-rogue-squadron-players-choice-empty-n64-box/ +Star Soldier Vanishing Earth - N64 Manual,9.99,0,29896,https://www.dkoldies.com/star-soldier-vanishing-earth-n64-manual/ +Star Craft 64 - N64 Manual,9.99,0,29639,https://www.dkoldies.com/star-craft-64-n64-manual/ +Ready 2 To Rumble Boxing - N64 Manual,9.99,0,29776,https://www.dkoldies.com/ready-2-to-rumble-boxing-n64-manual/ +"Rainbow Six, Tom Clancy's - N64 Manual",9.99,0,29856,https://www.dkoldies.com/rainbow-six-n64-manual/ +Original Controller Pak - Empty N64 Box,9.99,14.99,37157,https://www.dkoldies.com/original-controller-pak-empty-n64-box/ +New Replacement Thumbstick GameCube Style - Nintendo 64 (N64),9.99,0,40433,https://www.dkoldies.com/new-replacement-thumbstick-gamecube-style-nintendo-64-n64/ +NBA Showtime on NBC - N64 Manual,9.99,0,29725,https://www.dkoldies.com/nba-show-time-on-nbc-n64-manual/ +Ms. Pac-Man Maze Madness N64 - Empty N64 Box,9.99,0,17157,https://www.dkoldies.com/ms-pac-man-maze-madness-n64-empty-n64-box/ +Monster Truck Madness - N64 Manual,9.99,0,29760,https://www.dkoldies.com/monster-truck-madness-n64-manual/ +Midway's Greatest Arcade Hits Volume 1 - N64 Manual,9.99,10.99,29826,https://www.dkoldies.com/midways-greatest-arcade-hits-volume-1-n64-manual/ +Magical Tetris Challenge - N64 Manual,9.99,0,29789,https://www.dkoldies.com/magical-tetris-challenge-n64-manual/ +Madden 99 - Empty N64 Box,9.99,0,17163,https://www.dkoldies.com/madden-99-empty-n64-box/ +Looney Tunes Daffy Duck Dodgers - N64 Manual,9.99,0,29886,https://www.dkoldies.com/looney-tunes-daffy-duck-dodgers-n64-manual/ +Jet Force Gemini - N64 Manual,9.99,13.99,29740,https://www.dkoldies.com/jet-force-gemini-n64-manual/ +Jeopardy 64 - N64 Manual,9.99,0,29837,https://www.dkoldies.com/jeopardy-64-n64-manual/ +Iggy's Reckin Balls - N64 Manual,9.99,0,29778,https://www.dkoldies.com/iggys-reckin-balls-n64-manual/ +Hexen - N64 Manual,9.99,0,29892,https://www.dkoldies.com/hexen-n64-manual/ +FIFA Road To World Cup 98 64 - N64 Manual,9.99,0,29851,https://www.dkoldies.com/fifa-road-to-world-cup-98-64-n64-manual/ +Excitebike 64 - N64 Manual,9.99,0,29766,https://www.dkoldies.com/excitebike-64-n64-manual/ +Dark Rift - N64 Manual,9.99,0,29768,https://www.dkoldies.com/dark-rift-n64-manual/ +Command & Conquer N64 - Empty N64 Box,9.99,0,17255,https://www.dkoldies.com/command-conquer-n64-empty-n64-box/ +Clay Fighter 63 1/3 N64 - Empty N64 Box,9.99,0,17380,https://www.dkoldies.com/clay-fighter-63-1-3-n64-empty-n64-box/ +Circuit Pro Bowling - N64 Manual,9.99,0,29649,https://www.dkoldies.com/circuit-pro-bowling-n64-manual/ +Bust a Move 2 Arcade Edition N64 - Empty N64 Box,9.99,0,17408,https://www.dkoldies.com/bust-a-move-2-arcade-edition-n64-empty-n64-box/ +"Bug's life, Disney's A - N64 Manual",9.99,0,29660,https://www.dkoldies.com/bugs-life-disneys-a-n64-manual/ +1080 Ten Eighty Snowboarding - N64 Manual,9.99,0,29836,https://www.dkoldies.com/1080-ten-eighty-snowboarding-n64-manual/ +1080 Snowboarding - N64 Operation Card,9.99,0,47227,https://www.dkoldies.com/1080-snowboarding-n64-operation-card/ +Controller Extension Cable - Nintendo 64 (N64),8.99,11.99,55376,https://www.dkoldies.com/controller-extension-cable-nintendo-64-n64/ +New Replica Jumper Pak - N64,8.99,9.99,55600,https://www.dkoldies.com/new-replica-jumper-pak-n64/ +F-1 World Grand Prix - N64 Game,8.99,19.99,23993,https://www.dkoldies.com/f-1-world-grand-prix-n64-game/ +Complete Top Gear Hyperbike - N64,8.99,0,22397,https://www.dkoldies.com/complete-top-gear-hyperbike-n64/ +Wipeout 64 - N64 Manual,8.99,0,29868,https://www.dkoldies.com/wipeout-64-n64-manual/ +Virtual Chess 64 - N64 Manual,8.99,0,29698,https://www.dkoldies.com/virtual-chess-64-n64-manual/ +Tonic Trouble - N64 Manual,8.99,0,29769,https://www.dkoldies.com/tonic-trouble-n64-manual/ +Star Wars Battle for Naboo Episode 1 - N64 Manual,8.99,0,29731,https://www.dkoldies.com/star-wars-battle-for-naboo-episode-1-n64-manual/ +Snowboard Kids 2 N64 - Empty N64 Box,8.99,0,17372,https://www.dkoldies.com/snowboard-kids-2-n64-empty-n64-box/ +Rugrats in Paris The MOVIE - N64 Manual,8.99,0,29754,https://www.dkoldies.com/rugrats-in-paris-the-movie-n64-manual/ +Powerpuff Girls Chemical X Traction - N64 Manual,8.99,0,29884,https://www.dkoldies.com/powerpuff-girls-chemical-x-traction-n64-manual/ +Olympic Hockey 98 - N64 Manual,8.99,0,29711,https://www.dkoldies.com/olympic-hockey-98-n64-manual/ +NFL Blitz 2000 N64 - Empty N64 Box,8.99,0,17315,https://www.dkoldies.com/nfl-blitz-2000-n64-empty-n64-box/ +Mystical Ninja N64 - Empty N64 Box,8.99,0,17398,https://www.dkoldies.com/mystical-ninja-n64-empty-n64-box/ +Mario Tennis - N64 Manual,8.99,0,29743,https://www.dkoldies.com/mario-tennis-n64-manual/ +Goemon's Great Adventure N64 - Empty N64 Box,8.99,0,17142,https://www.dkoldies.com/goemons-great-adventure-n64-empty-n64-box/ +GameShark V.1 - Nintendo 64,8.99,11.99,37788,https://www.dkoldies.com/gameshark-v-1-nintendo-64/ +FIFA 99 N64 - Empty N64 Box,8.99,0,17382,https://www.dkoldies.com/fifa-99-n64-empty-n64-box/ +Cruis'n USA - N64 Manual,8.99,0,29662,https://www.dkoldies.com/cruisn-usa-n64-manual/ +Blast Corps - N64 Manual,8.99,0,29733,https://www.dkoldies.com/blast-corps-n64-manual/ +Asteroids Hyper 64 - N64 Manual,8.99,0,29707,https://www.dkoldies.com/asteroids-hyper-64-n64-manual/ +NASCAR 99 - N64 Game,7.99,0,24093,https://www.dkoldies.com/nascar-99-n64-game/ +Waialae Country Club Golf - N64 Game,7.99,0,23854,https://www.dkoldies.com/waialae-country-club-golf-n64-game/ +Madden 99 - N64 Game,7.99,0,23841,https://www.dkoldies.com/madden-99-n64-game/ +NBA Live 2000 - N64 Game,7.99,9.99,23973,https://www.dkoldies.com/nba-live-2000-n64-game/ +Complete Tonic Trouble - N64,7.99,0,22306,https://www.dkoldies.com/complete-tonic-trouble-n64/ +Complete NASCAR 2000 - N64,7.99,0,22253,https://www.dkoldies.com/complete-nascar-2000-n64/ +Complete Lode Runner 3D - N64,7.99,0,22241,https://www.dkoldies.com/complete-lode-runner-3d-n64/ +Complete Dual Heroes - N64,7.99,0,22365,https://www.dkoldies.com/complete-dual-heroes-n64/ +Complete Big Mountain 2000 64 - N64,7.99,0,22371,https://www.dkoldies.com/complete-big-mountain-2000-64-n64/ +Wheel of Fortune - N64 Manual,7.99,0,29647,https://www.dkoldies.com/wheel-of-fortune-n64-manual/ +Wayne Gretzky's 3D Hockey '98 - N64 Manual,7.99,0,29880,https://www.dkoldies.com/wayne-gretzkys-3d-hockey-98-n64-manual/ +WCW Backstage Assault - N64 Manual,7.99,0,29858,https://www.dkoldies.com/wcw-backstage-assault-n64-manual/ +Top Gear Overdrive - N64 Manual,7.99,0,29909,https://www.dkoldies.com/topgear-overdrive-n64-manual/ +Star Wars Racer Episode 1 Racer - N64 Manual,7.99,8.99,29728,https://www.dkoldies.com/star-wars-racer-episode-1-n64-manual/ +"Scooby-Doo!, Classic Creep Capers N64 - Empty N64 Box",7.99,0,17155,https://www.dkoldies.com/scooby-doo-classic-creep-capers-n64-empty-n64-box/ +Ridge Racer 64 - N64 Manual,7.99,0,29774,https://www.dkoldies.com/ridge-racer-64-n64-manual/ +Rayman 2 The Great Escape N64 - Empty N64 Box,7.99,0,17376,https://www.dkoldies.com/rayman-2-the-great-escape-n64-empty-n64-box/ +RF Switch - Empty N64 Box,7.99,0,31740,https://www.dkoldies.com/rf-switch-empty-n64-box/ +Quake N64 - Empty N64 Box,7.99,0,17274,https://www.dkoldies.com/quake-n64-empty-n64-box/ +PaperBoy N64 - Empty N64 Box,7.99,0,17202,https://www.dkoldies.com/paperboy-n64-empty-n64-box/ +New Special FX Shaker Pak - Nintendo 64 (N64),7.99,0,22536,https://www.dkoldies.com/new-special-fx-shaker-pak-nintendo-64-n64/ +NFL Quarterback Club 99 N64 - Empty N64 Box,7.99,0,17184,https://www.dkoldies.com/nfl-quarterback-club-99-n64-empty-n64-box/ +NFL Quarterback Club 98 N64 - Empty N64 Box,7.99,0,17171,https://www.dkoldies.com/nfl-quarterback-club-98-n64-empty-n64-box/ +NFL Quarterback Club 2000 QB N64 - Empty N64 Box,7.99,0,17242,https://www.dkoldies.com/nfl-quarterback-club-2000-qb-n64-empty-n64-box/ +NFL Blitz 2001 - N64 Manual,7.99,0,29809,https://www.dkoldies.com/nfl-blitz-2001-n64-manual/ +NBA Jam 99 - N64 Manual,7.99,0,29798,https://www.dkoldies.com/nba-jam-99-n64-manual/ +NBA Jam 2000 N64 - Empty N64 Box,7.99,0,17439,https://www.dkoldies.com/nba-jam-2000-n64-empty-n64-box/ +NASCAR 99 N64 - Empty N64 Box,7.99,0,17414,https://www.dkoldies.com/nascar-99-n64-empty-n64-box/ +Mortal Kombat Mythologies SubZero - N64 Manual,7.99,0,29824,https://www.dkoldies.com/mortal-kombat-mythologies-subzero-n64-manual/ +Monster Truck Madness N64 - Empty N64 Box,7.99,0,17267,https://www.dkoldies.com/monster-truck-madness-n64-empty-n64-box/ +Milo's Astro Lanes 64 - N64 Manual,7.99,0,29839,https://www.dkoldies.com/milos-astro-lanes-64-n64-manual/ +Mega Man 64 N64 - Empty N64 Box,7.99,0,17325,https://www.dkoldies.com/mega-man-64-n64-empty-n64-box/ +Knockout Kings 2000 N64 - Empty N64 Box,7.99,0,17170,https://www.dkoldies.com/knockout-kings-2000-n64-empty-n64-box/ +Ken Griffey Jr.'s Slugfest - N64 Manual,7.99,0,29926,https://www.dkoldies.com/ken-griffey-jr-s-slugfest-n64-manual/ +Indiana Jones Internal Machine N64 - Empty N64 Box,7.99,0,17248,https://www.dkoldies.com/indiana-jones-internal-machine-n64-empty-n64-box/ +Golden Nugget - N64 Manual,7.99,0,29654,https://www.dkoldies.com/golden-nugget-n64-manual/ +Glover - N64 Operation Card,7.99,0,47223,https://www.dkoldies.com/glover-n64-operation-card/ +GT64 Championship Ed. - N64 Manual,7.99,0,29821,https://www.dkoldies.com/gt64-championship-ed-n64-manual/ +ECW Hardcore Revolution - N64 Manual,7.99,0,29667,https://www.dkoldies.com/ecw-hardcore-revolution-n64-manual/ +Dr Mario 64 N64 - Empty N64 Box,7.99,0,17308,https://www.dkoldies.com/dr-mario-64-n64-empty-n64-box/ +Diddy Kong Racing - N64 Manual,7.99,0,29756,https://www.dkoldies.com/diddy-kong-racing-n64-manual/ +Bust A Move 99 64 N64 - Empty N64 Box,7.99,0,17347,https://www.dkoldies.com/bust-a-move-99-64-n64-empty-n64-box/ +Bottom of The 9TH - N64 Manual,7.99,0,29799,https://www.dkoldies.com/bottom-of-the-9th-n64-manual/ +Bomberman 64 The Second Attack N64 - Empty N64 Box,7.99,0,17349,https://www.dkoldies.com/bomberman-64-the-second-attack-n64-empty-n64-box/ +Bassmasters 2000 - N64 Manual,7.99,0,29643,https://www.dkoldies.com/bassmasters-2000-n64-manual/ +Bass Hunter 64 - N64 Manual,7.99,0,29845,https://www.dkoldies.com/bass-hunter-64-n64-manual/ +Army Men Sarge's Heroes N64 - Empty N64 Box,7.99,0,17288,https://www.dkoldies.com/army-men-sarges-heroes-n64-empty-n64-box/ +All Star Baseball 2001 - N64 Manual,7.99,0,29804,https://www.dkoldies.com/all-star-baseball-2001-n64-manual/ +1080 Ten Eighty Snowboarding N64 Players Choice - Empty N64 Box,7.99,0,39841,https://www.dkoldies.com/1080-ten-eighty-snowboarding-n64-players-choice-empty-n64-box/ +NFL Quarterback Club 98 - N64 Game,6.99,0,23849,https://www.dkoldies.com/nfl-quarterback-club-98-n64-game/ +NBA Courtside - N64 Game,6.99,0,23898,https://www.dkoldies.com/nba-courtside-n64-game/ +All Star Baseball 2000 - N64 Game,6.99,11.99,23947,https://www.dkoldies.com/all-star-baseball-2000-n64-game/ +All Star Baseball 99 - N64 Game,6.99,0,23850,https://www.dkoldies.com/all-star-baseball-99-n64-game/ +NBA Live 99 - N64 Game,6.99,9.99,23855,https://www.dkoldies.com/nba-live-99-n64-game/ +NHL Breakaway 98 - N64 Game,6.99,0,23893,https://www.dkoldies.com/nhl-breakaway-98-n64-game/ +NHL 99 - N64 Game,6.99,15.99,23861,https://www.dkoldies.com/nhl-99-n64-game/ +"Xena Warrior Princess, The - N64 Manual",6.99,0,29785,https://www.dkoldies.com/xena-warrior-princess-the-n64-manual/ +World Driver Championship - N64 Manual,6.99,0,29819,https://www.dkoldies.com/world-driver-championship-n64-manual/ +Wave Race 64 - N64 Operation Card,6.99,0,47297,https://www.dkoldies.com/wave-race-64-n64-operation-card/ +"Toy Story 2, Disney's N64 - Empty N64 Box",6.99,0,17234,https://www.dkoldies.com/toy-story-2-disneys-n64-empty-n64-box/ +Top Gear Rally 2 - N64 Manual,6.99,0,29831,https://www.dkoldies.com/top-gear-rally-2-n64-manual/ +Tom and Jerry In Fists Of Fury 64 - N64 Manual,6.99,0,29841,https://www.dkoldies.com/tom-and-jerry-in-fists-of-fury-64-n64-manual/ +Superman - N64 Manual,6.99,0,29732,https://www.dkoldies.com/superman-n64-manual/ +Supercross 2000 N64 - Empty N64 Box,6.99,0,17440,https://www.dkoldies.com/supercross-2000-n64-empty-n64-box/ +Starshot Space Circus Fever - N64 Manual,6.99,0,29637,https://www.dkoldies.com/starshot-space-circus-fever-n64-manual/ +South Park Chef's Luv Shack N64 - Empty N64 Box,6.99,0,17286,https://www.dkoldies.com/south-park-chefs-luv-shack-n64-empty-n64-box/ +Rugrats Scavenger Hunt - N64 Manual,6.99,0,29771,https://www.dkoldies.com/rugrats-scavenger-hunt-n64-manual/ +Rally Challenge 2000 - N64 Manual,6.99,0,29685,https://www.dkoldies.com/rally-challenge-2000-n64-manual/ +Power Rangers Lightspeed Rescue - N64 Manual,6.99,0,29866,https://www.dkoldies.com/power-rangers-lightspeed-rescue-n64-manual/ +Nightmare Creatures - N64 Manual,6.99,0,29753,https://www.dkoldies.com/nightmare-creatures-n64-manual/ +NHL Breakaway 99 - N64 Manual,6.99,0,29844,https://www.dkoldies.com/nhl-breakaway-99-n64-manual/ +NHL 99 N64 - Empty N64 Box,6.99,0,17183,https://www.dkoldies.com/nhl-99-n64-empty-n64-box/ +NHL 99 - N64 Manual,6.99,0,29676,https://www.dkoldies.com/nhl-99-n64-manual/ +NFL Quarterback Club 2001 N64 - Empty N64 Box,6.99,0,17262,https://www.dkoldies.com/nfl-quarterback-club-2001-n64-empty-n64-box/ +NBA Live 2000 N64 - Empty N64 Box,6.99,0,17294,https://www.dkoldies.com/nba-live-2000-n64-empty-n64-box/ +NBA Live 2000 - N64 Manual,6.99,0,29787,https://www.dkoldies.com/nba-live-2000-n64-manual/ +NBA Courtside 2 N64 - Empty N64 Box,6.99,0,17226,https://www.dkoldies.com/nba-courtside-2-n64-empty-n64-box/ +Mickey's Speedway USA N64 - Empty N64 Box,6.99,0,17272,https://www.dkoldies.com/mickeys-speedway-usa-n64-empty-n64-box/ +Mario Kart 64 - N64 Operation Card,6.99,0,47225,https://www.dkoldies.com/mario-kart-64-n64-operation-card/ +Lode Runner 3D - N64 Manual,6.99,0,29705,https://www.dkoldies.com/lode-runner-3d-n64-manual/ +Forsaken 64 N64 - Empty N64 Box,6.99,0,17237,https://www.dkoldies.com/forsaken-64-n64-empty-n64-box/ +Forsaken 64 - N64 Manual,6.99,0,29730,https://www.dkoldies.com/forsaken-64-n64-manual/ +Diddy Kong Racing - N64 Operation Card,6.99,0,47226,https://www.dkoldies.com/diddy-kong-racing-n64-operation-card/ +California Speed - N64 Manual,6.99,0,29636,https://www.dkoldies.com/california-speed-n64-manual/ +Armorines Project SWARM - N64 Manual,6.99,0,29922,https://www.dkoldies.com/armorines-project-swarm-n64-manual/ +All Star Baseball 99 N64 - Empty N64 Box,6.99,0,17172,https://www.dkoldies.com/all-star-baseball-99-n64-empty-n64-box/ +Aero Gauge - N64 Manual,6.99,0,29689,https://www.dkoldies.com/aero-gauge-n64-manual/ +NFL Quarterback Club 2000 - N64 Game,5.99,0,23920,https://www.dkoldies.com/nfl-quarterback-club-2000-qb-n64-game/ +Tetrisphere - N64 Manual,5.99,0,29687,https://www.dkoldies.com/tetrisphere-n64-manual/ +Madden 2001 - N64 Manual,5.99,0,29737,https://www.dkoldies.com/madden-2001-n64-manual/ +Complete Re-Volt - N64,5.99,0,22265,https://www.dkoldies.com/complete-re-volt-n64/ +Complete Olympic Hockey 98 - N64,5.99,0,22247,https://www.dkoldies.com/complete-olympic-hockey-98-n64/ +Complete NHL Breakaway 99 - N64,5.99,0,22381,https://www.dkoldies.com/complete-nhl-breakaway-99-n64/ +Complete Mia Hamm Soccer - N64,5.99,0,22334,https://www.dkoldies.com/complete-mia-hamm-soccer-n64/ +Turok 2 Seeds of Evil - N64 Manual,5.99,0,29703,https://www.dkoldies.com/turok-2-seeds-of-evil-n64-manual/ +South Park Rally - N64 Manual,5.99,0,29810,https://www.dkoldies.com/south-park-rally-n64-manual/ +"Rainbow Six, Tom Clancy's - Empty N64 Box",5.99,0,17363,https://www.dkoldies.com/rainbow-six-n64-empty-n64-box/ +RF Switch Compatible SNES - Empty N64 Box,5.99,0,31741,https://www.dkoldies.com/rf-switch-compatible-snes-empty-n64-box/ +Quake II N64 - Empty N64 Box,5.99,0,17251,https://www.dkoldies.com/quake-ii-n64-empty-n64-box/ +Off Road Challenge N64 - Empty N64 Box,5.99,0,17277,https://www.dkoldies.com/off-road-challenge-n64-empty-n64-box/ +NHL Breakaway 99 N64 - Empty N64 Box,5.99,0,17351,https://www.dkoldies.com/nhl-breakaway-99-n64-empty-n64-box/ +NFL Quarterback Club 2001 - N64 Manual,5.99,0,29755,https://www.dkoldies.com/nfl-quarterback-club-2001-n64-manual/ +NBA Hang Time N64 - Empty N64 Box,5.99,0,17379,https://www.dkoldies.com/nba-hang-time-n64-empty-n64-box/ +Mia Hamm Soccer N64 - Empty N64 Box,5.99,0,17304,https://www.dkoldies.com/mia-hamm-soccer-n64-empty-n64-box/ +LEGO Racers N64 - Empty N64 Box,5.99,0,17384,https://www.dkoldies.com/lego-racers-n64-empty-n64-box/ +Jeopardy 64 N64 - Empty N64 Box,5.99,0,17344,https://www.dkoldies.com/jeopardy-64-n64-empty-n64-box/ +FIFA Soccer 64 - N64 Manual,5.99,0,29827,https://www.dkoldies.com/fifa-soccer-64-n64-manual/ +ExtremeG - N64 Manual,5.99,0,29876,https://www.dkoldies.com/extremeg-n64-manual/ +Dark Rift N64 - Empty N64 Box,5.99,0,17275,https://www.dkoldies.com/dark-rift-n64-empty-n64-box/ +Automobili Lamborghini - N64 Manual,5.99,0,29751,https://www.dkoldies.com/automobili-lamborghini-n64-manual/ +Replacement Memory Expansion Cover Charcoal - Nintendo 64,4.99,9.99,55580,https://www.dkoldies.com/replacement-memory-expansion-cover-charcoal-nintendo-64/ +Replacement Memory Expansion Cover - Nintendo 64,4.99,9.99,47883,https://www.dkoldies.com/replacement-memory-expansion-cover-nintendo-64/ +N64 Game Hard Plastic Case GREEN - 1 ct,4.99,0,57700,https://www.dkoldies.com/n64-game-hard-plastic-case-green-1-ct/ +"Xena Warrior Princess, The N64 - Empty N64 Box",4.99,0,17292,https://www.dkoldies.com/xena-warrior-princess-the-n64-empty-n64-box/ +Wipeout 64 N64 - Empty N64 Box,4.99,0,17375,https://www.dkoldies.com/wipeout-64-n64-empty-n64-box/ +WWF Attitude - N64 Manual,4.99,0,29666,https://www.dkoldies.com/wwf-attitude-n64-manual/ +WCW vs. NWO World Tour - N64 Manual,4.99,0,29672,https://www.dkoldies.com/wcw-vs-nwo-world-tour-n64-manual/ +WCW Mayhem - N64 Manual,4.99,0,29674,https://www.dkoldies.com/wcw-mayhem-n64-manual/ +Twisted Edge Extreme Snowboarding N64 - Empty N64 Box,4.99,0,17193,https://www.dkoldies.com/twisted-edge-extreme-snowboarding-n64-empty-n64-box/ +Triple Play 2000 N64 - Empty N64 Box,4.99,0,17300,https://www.dkoldies.com/triple-play-2000-n64-empty-n64-box/ +Top Gear Rally N64 - Empty N64 Box,4.99,0,17287,https://www.dkoldies.com/top-gear-rally-n64-empty-n64-box/ +Top Gear Rally - N64 Manual,4.99,0,29780,https://www.dkoldies.com/top-gear-rally-n64-manual/ +Tony Hawk's Pro Skater 3 - N64 Manual,4.99,0,29925,https://www.dkoldies.com/tony-hawks-pro-skater-3-n64-manual/ +Tom and Jerry In Fists Of Fury 64 N64 - Empty N64 Box,4.99,0,17348,https://www.dkoldies.com/tom-and-jerry-in-fists-of-fury-64-n64-empty-n64-box/ +Tigger's Honey Hunt N64 - Empty N64 Box,4.99,0,17362,https://www.dkoldies.com/tiggers-honey-hunt-n64-empty-n64-box/ +Tigger's Honey Hunt - N64 Manual,4.99,0,29855,https://www.dkoldies.com/tiggers-honey-hunt-n64-manual/ +Supercross 2000 - N64 Manual,4.99,0,29934,https://www.dkoldies.com/supercross-2000-n64-manual/ +Super Bowling N64 - Empty N64 Box,4.99,0,17444,https://www.dkoldies.com/super-bowling-n64-empty-n64-box/ +Star Wars Rogue Squadron - N64 Manual,4.99,0,29680,https://www.dkoldies.com/star-wars-rogue-squadron-n64-manual/ +South Park Rally N64 - Empty N64 Box,4.99,0,17317,https://www.dkoldies.com/south-park-rally-n64-empty-n64-box/ +Ready 2 Rumble Round 2 - N64 Manual,4.99,0,29893,https://www.dkoldies.com/ready-2-rumble-round-2-n64-manual/ +Rampage 2 Universal Tour N64 - Empty N64 Box,4.99,0,17413,https://www.dkoldies.com/rampage-2-universal-tour-n64-empty-n64-box/ +Polaris SnoCross N64 - Empty N64 Box,4.99,0,17378,https://www.dkoldies.com/polaris-snocross-n64-empty-n64-box/ +PaperBoy - N64 Manual,4.99,0,29695,https://www.dkoldies.com/paperboy-n64-manual/ +Nintendo 64 System Instruction Booklet - N64 Manual,4.99,0,46826,https://www.dkoldies.com/nintendo-64-system-instruction-booklet-n64-manual/ +Nagano Winter Olympics '98 N64 - Empty N64 Box,4.99,0,17241,https://www.dkoldies.com/nagano-winter-olympics-98-n64-empty-n64-box/ +NHL Breakaway 98 N64 - Empty N64 Box,4.99,0,17215,https://www.dkoldies.com/nhl-breakaway-98-n64-empty-n64-box/ +N64 Game Hard Plastic Case CLEAR - 1 ct,4.99,0,57698,https://www.dkoldies.com/n64-game-hard-plastic-case-clear-1-ct/ +N64 Game Hard Plastic Case BLUE - 1 ct,4.99,0,57699,https://www.dkoldies.com/n64-game-hard-plastic-case-blue-1-ct/ +Mission Impossible - N64 Manual,4.99,0,29661,https://www.dkoldies.com/mission-impossible-n64-manual/ +Mike Piazza's StrikeZone - N64 Manual,4.99,0,29846,https://www.dkoldies.com/mike-piazzas-strikezone-n64-manual/ +Madden Football 64 N64 - Empty N64 Box,4.99,0,17175,https://www.dkoldies.com/madden-football-64-n64-empty-n64-box/ +Madden 2002 - N64 Manual,4.99,0,29867,https://www.dkoldies.com/madden-2002-n64-manual/ +Looney Tunes Daffy Duck Dodgers N64 - Empty N64 Box,4.99,0,17393,https://www.dkoldies.com/looney-tunes-daffy-duck-dodgers-n64-empty-n64-box/ +Jeremy Mcgrath Supercross 2000 - N64 Manual,4.99,0,29904,https://www.dkoldies.com/jeremy-mcgrath-supercross-2000-n64-manual/ +Hot Wheels Turbo Racing N64 - Empty N64 Box,4.99,0,17388,https://www.dkoldies.com/hot-wheels-turbo-racing-n64-empty-n64-box/ +"Hey You, Pikachu! - N64 Manual",4.99,0,29720,https://www.dkoldies.com/hey-you-pikachu-n64-manual/ +Gex 3 Deep Cover Gecko N64 - Empty N64 Box,4.99,0,17392,https://www.dkoldies.com/gex-3-deep-cover-gecko-n64-empty-n64-box/ +Gauntlet Legends 64 N64 - Empty N64 Box,4.99,0,17340,https://www.dkoldies.com/gauntlet-legends-64-n64-empty-n64-box/ +GameShark Pro - N64 Manual,4.99,0,41045,https://www.dkoldies.com/gameshark-pro-n64-manual/ +Fighter Destiny 2 N64 - Empty N64 Box,4.99,0,17318,https://www.dkoldies.com/fighter-destiny-2-n64-empty-n64-box/ +Elmo's Number Journey N64 - Empty N64 Box,4.99,0,17147,https://www.dkoldies.com/elmos-number-journey-n64-empty-n64-box/ +Elmo's Letter Adventure N64 - Empty N64 Box,4.99,0,17420,https://www.dkoldies.com/elmos-letter-adventure-n64-empty-n64-box/ +Donald Duck Goin Quakers N64 - Empty N64 Box,4.99,0,17405,https://www.dkoldies.com/donald-duck-goin-quakers-n64-empty-n64-box/ +Circuit Pro Bowling N64 - Empty N64 Box,4.99,0,17156,https://www.dkoldies.com/circuit-pro-bowling-n64-empty-n64-box/ +Circuit Pro Bowling 64 N64 - Empty N64 Box,4.99,0,17339,https://www.dkoldies.com/circuit-pro-bowling-64-n64-empty-n64-box/ +Bust A Move 99 64 - N64 Manual,4.99,0,29840,https://www.dkoldies.com/bust-a-move-99-64-n64-manual/ +Batman Beyond Return of Joker N64 - Empty N64 Box,4.99,0,17407,https://www.dkoldies.com/batman-beyond-return-of-joker-n64-empty-n64-box/ +Army Men Air Combat N64 - Empty N64 Box,4.99,0,17279,https://www.dkoldies.com/army-men-air-combat-n64-empty-n64-box/ +4.5mm (1150) Security Screw Bit SNES/N64 Systems and Genesis Cartridges,4.99,0,55331,https://www.dkoldies.com/4-5mm-1150-security-screw-bit-snes-n64-systems-and-genesis-cartridges/ +1 Box Insert - Empty N64 Box,4.49,0,17435,https://www.dkoldies.com/1-box-insert-empty-n64-box/ +Complete Mike Piazza's StrikeZone - N64,3.99,0,22383,https://www.dkoldies.com/complete-mike-piazzas-strikezone-n64/ +World Driver Championship N64 - Empty N64 Box,3.99,0,17326,https://www.dkoldies.com/world-driver-championship-n64-empty-n64-box/ +WinBack Covert Operations N64 - Empty N64 Box,3.99,0,17327,https://www.dkoldies.com/winback-covert-operations-n64-empty-n64-box/ +Wheel of Fortune N64 - Empty N64 Box,3.99,0,17154,https://www.dkoldies.com/wheel-of-fortune-n64-empty-n64-box/ +War Gods - N64 Manual,3.99,0,29905,https://www.dkoldies.com/war-gods-n64-manual/ +Waialae Country Club Golf N64 - Empty N64 Box,3.99,0,17176,https://www.dkoldies.com/waialae-country-club-golf-n64-empty-n64-box/ +WWF Attitude N64 - Empty N64 Box,3.99,0,17173,https://www.dkoldies.com/wwf-attitude-n64-empty-n64-box/ +WCW Nitro N64 - Empty N64 Box,3.99,0,17245,https://www.dkoldies.com/wcw-nitro-n64-empty-n64-box/ +WCW Mayhem N64 - Empty N64 Box,3.99,0,17181,https://www.dkoldies.com/wcw-mayhem-n64-empty-n64-box/ +WCW Backstage Assault N64 - Empty N64 Box,3.99,0,17365,https://www.dkoldies.com/wcw-backstage-assault-n64-empty-n64-box/ +Virtual Chess 64 N64 - Empty N64 Box,3.99,0,17205,https://www.dkoldies.com/virtual-chess-64-n64-empty-n64-box/ +VRally Edition 99 N64 - Empty N64 Box,3.99,0,17153,https://www.dkoldies.com/vrally-edition-99-n64-empty-n64-box/ +Triple Play 2000 - N64 Manual,3.99,0,29793,https://www.dkoldies.com/triple-play-2000-n64-manual/ +Topgear Overdrive N64 - Empty N64 Box,3.99,0,17416,https://www.dkoldies.com/topgear-overdrive-n64-empty-n64-box/ +Top Gear Rally 2 N64 - Empty N64 Box,3.99,0,17338,https://www.dkoldies.com/top-gear-rally-2-n64-empty-n64-box/ +Top Gear Hyperbike N64 - Empty N64 Box,3.99,0,17367,https://www.dkoldies.com/top-gear-hyperbike-n64-empty-n64-box/ +Tony Hawk's Pro Skater 3 N64 - Empty N64 Box,3.99,0,17432,https://www.dkoldies.com/tony-hawks-pro-skater-3-n64-empty-n64-box/ +Tonic Trouble N64 - Empty N64 Box,3.99,0,17276,https://www.dkoldies.com/tonic-trouble-n64-empty-n64-box/ +Tetrisphere N64 - Empty N64 Box,3.99,0,17194,https://www.dkoldies.com/tetrisphere-n64-empty-n64-box/ +"Tarzan, Disney's N64 - Empty N64 Box",3.99,0,17189,https://www.dkoldies.com/tarzan-disneys-n64-empty-n64-box/ +Super Bowling - N64 Manual,3.99,0,29938,https://www.dkoldies.com/super-bowling-n64-manual/ +Stunt Racer N64 - Empty N64 Box,3.99,0,17289,https://www.dkoldies.com/stunt-racer-n64-empty-n64-box/ +Starshot Space Circus Fever N64 - Empty N64 Box,3.99,0,17144,https://www.dkoldies.com/starshot-space-circus-fever-n64-empty-n64-box/ +Star Wars Battle for Naboo Episode 1 N64 - Empty N64 Box,3.99,0,17238,https://www.dkoldies.com/star-wars-battle-for-naboo-episode-1-n64-empty-n64-box/ +Star Soldier Vanishing Earth N64 - Empty N64 Box,3.99,0,17403,https://www.dkoldies.com/star-soldier-vanishing-earth-n64-empty-n64-box/ +Space Invaders N64 - Empty N64 Box,3.99,0,17148,https://www.dkoldies.com/space-invaders-n64-empty-n64-box/ +"Shadowgate 64, Trails of The four Towers N64 - Empty N64 Box",3.99,0,17145,https://www.dkoldies.com/shadowgate-64-trails-of-the-four-towers-n64-empty-n64-box/ +Scars N64 - Empty N64 Box,3.99,0,17303,https://www.dkoldies.com/scars-n64-empty-n64-box/ +Rush 2 Extreme Racing USA N64 - Empty N64 Box,3.99,0,17371,https://www.dkoldies.com/rush-2-extreme-racing-usa-n64-empty-n64-box/ +Rocket Robot on Wheels N64 - Empty N64 Box,3.99,0,17404,https://www.dkoldies.com/rocket-robot-on-wheels-n64-empty-n64-box/ +Robotron 64 N64 - Empty N64 Box,3.99,0,17332,https://www.dkoldies.com/robotron-64-n64-empty-n64-box/ +Roadsters N64 - Empty N64 Box,3.99,0,17299,https://www.dkoldies.com/roadsters-n64-empty-n64-box/ +Ridge Racer 64 N64 - Empty N64 Box,3.99,0,17281,https://www.dkoldies.com/ridge-racer-64-n64-empty-n64-box/ +Ready 2 To Rumble Boxing N64 - Empty N64 Box,3.99,0,17283,https://www.dkoldies.com/ready-2-to-rumble-boxing-n64-empty-n64-box/ +Ready 2 Rumble Round 2 N64 - Empty N64 Box,3.99,0,17400,https://www.dkoldies.com/ready-2-rumble-round-2-n64-empty-n64-box/ +ReVolt N64 - Empty N64 Box,3.99,0,17236,https://www.dkoldies.com/revolt-n64-empty-n64-box/ +ReVolt - N64 Manual,3.99,0,29729,https://www.dkoldies.com/revolt-n64-manual/ +Razor Freestyle Scooter N64 - Empty N64 Box,3.99,0,17415,https://www.dkoldies.com/razor-freestyle-scooter-n64-empty-n64-box/ +Rat Attack N64 - Empty N64 Box,3.99,0,17208,https://www.dkoldies.com/rat-attack-n64-empty-n64-box/ +Rally Challenge 2000 N64 - Empty N64 Box,3.99,0,17192,https://www.dkoldies.com/rally-challenge-2000-n64-empty-n64-box/ +Powerpuff Girls Chemical X Traction N64 - Empty N64 Box,3.99,0,17391,https://www.dkoldies.com/powerpuff-girls-chemical-x-traction-n64-empty-n64-box/ +Power Rangers Lightspeed Rescue N64 - Empty N64 Box,3.99,0,17373,https://www.dkoldies.com/power-rangers-lightspeed-rescue-n64-empty-n64-box/ +Penny Racers N64 - Empty N64 Box,3.99,0,17377,https://www.dkoldies.com/penny-racers-n64-empty-n64-box/ +Penny Racers - N64 Manual,3.99,0,29870,https://www.dkoldies.com/penny-racers-n64-manual/ +PGA European Tour 64 N64 - Empty N64 Box,3.99,0,17355,https://www.dkoldies.com/pga-european-tour-64-n64-empty-n64-box/ +Olympic Hockey 98 N64 - Empty N64 Box,3.99,0,17218,https://www.dkoldies.com/olympic-hockey-98-n64-empty-n64-box/ +Nuclear Strike 64 N64 - Empty N64 Box,3.99,0,17336,https://www.dkoldies.com/nuclear-strike-64-n64-empty-n64-box/ +Nintendo 64 Transfer Pak - N64 Manual,3.99,0,41044,https://www.dkoldies.com/nintendo-64-transfer-pak-n64-manual/ +Nintendo 64 Rumble Pak - N64 Manual,3.99,0,41043,https://www.dkoldies.com/nintendo-64-rumble-pak-n64-manual/ +Nintendo 64 Expansion Pak - N64 Manual,3.99,0,41038,https://www.dkoldies.com/nintendo-64-expansion-pak-n64-manual/ +NHL Blades of Steel '99 N64 - Empty N64 Box,3.99,0,17310,https://www.dkoldies.com/nhl-blades-of-steel-99-n64-empty-n64-box/ +NFL Blitz Special Edition 64 N64 - Empty N64 Box,3.99,0,17345,https://www.dkoldies.com/nfl-blitz-special-edition-64-n64-empty-n64-box/ +NFL Blitz - N64 Manual,3.99,5.99,29800,https://www.dkoldies.com/nfl-blitz-n64-manual/ +NBA Showtime on NBC N64 - Empty N64 Box,3.99,0,17232,https://www.dkoldies.com/nba-show-time-on-nbc-n64-empty-n64-box/ +NBA Live 99 N64 - Empty N64 Box,3.99,0,17177,https://www.dkoldies.com/nba-live-99-n64-empty-n64-box/ +NASCAR 2000 - N64 Manual,3.99,0,29717,https://www.dkoldies.com/nascar-2000-n64-manual/ +Monaco Grand Prix N64 - Empty N64 Box,3.99,0,17438,https://www.dkoldies.com/monaco-grand-prix-n64-empty-n64-box/ +Mia Hamm Soccer - N64 Manual,3.99,0,29797,https://www.dkoldies.com/mia-hamm-soccer-n64-manual/ +Major League Baseball Ken Griffey Jr - N64 Manual,3.99,4.99,29791,https://www.dkoldies.com/major-league-baseball-ken-griffey-jr-n64-manual/ +Madden 2000 N64 - Empty N64 Box,3.99,0,17180,https://www.dkoldies.com/madden-2000-n64-empty-n64-box/ +Mace The Dark Age N64 - Empty N64 Box,3.99,0,17253,https://www.dkoldies.com/mace-the-dark-age-n64-empty-n64-box/ +Lode Runner 3D N64 - Empty N64 Box,3.99,0,17212,https://www.dkoldies.com/lode-runner-3d-n64-empty-n64-box/ +Knockout Kings 2000 - N64 Manual,3.99,0,29663,https://www.dkoldies.com/knockout-kings-2000-n64-manual/ +Knife Edge Nose Gunner N64 - Empty N64 Box,3.99,0,17197,https://www.dkoldies.com/knife-edge-nose-gunner-n64-empty-n64-box/ +Ken Griffey Jr.'s Slugfest N64 - Empty N64 Box,3.99,0,17433,https://www.dkoldies.com/ken-griffey-jr-s-slugfest-n64-empty-n64-box/ +Jeremy Mcgrath Supercross 2000 N64 - Empty N64 Box,3.99,0,17411,https://www.dkoldies.com/jeremy-mcgrath-supercross-2000-n64-empty-n64-box/ +International Track & Field 2000 N64 - Empty N64 Box,3.99,0,17437,https://www.dkoldies.com/international-track-field-2000-n64-empty-n64-box/ +International Superstar Soccer 64 N64 - Empty N64 Box,3.99,0,17295,https://www.dkoldies.com/international-superstar-soccer-64-n64-empty-n64-box/ +International Superstar Soccer '98 N64 - Empty N64 Box,3.99,0,17436,https://www.dkoldies.com/international-superstar-soccer-98-n64-empty-n64-box/ +Indy Racing 2000 N64 - Empty N64 Box,3.99,0,17152,https://www.dkoldies.com/indy-racing-2000-n64-empty-n64-box/ +Indy Racing 2000 - N64 Manual,3.99,0,29645,https://www.dkoldies.com/indy-racing-2000-n64-manual/ +In The Zone 99 N64 - Empty N64 Box,3.99,0,17219,https://www.dkoldies.com/in-the-zone-99-n64-empty-n64-box/ +In The Zone 98 N64 - Empty N64 Box,3.99,0,17222,https://www.dkoldies.com/in-the-zone-98-n64-empty-n64-box/ +In The Zone 2000 N64 - Empty N64 Box,3.99,0,17158,https://www.dkoldies.com/in-the-zone-2000-n64-empty-n64-box/ +Hybrid Heaven N64 - Empty N64 Box,3.99,0,17431,https://www.dkoldies.com/hybrid-heaven-n64-empty-n64-box/ +Hercules The Legendary Journeys N64 - Empty N64 Box,3.99,0,17369,https://www.dkoldies.com/hercules-the-legendary-journeys-n64-empty-n64-box/ +Golden Nugget N64 - Empty N64 Box,3.99,0,17161,https://www.dkoldies.com/golden-nugget-n64-empty-n64-box/ +Glover N64 - Empty N64 Box,3.99,0,17424,https://www.dkoldies.com/glover-n64-empty-n64-box/ +Gameshark N64 - Empty N64 Box,3.99,0,17417,https://www.dkoldies.com/gameshark-n64-empty-n64-box/ +GameShark Version 2.2 - N64 Manual,3.99,0,29910,https://www.dkoldies.com/gameshark-version-2-2-n64-manual/ +GT64 Championship Ed. N64 - Empty N64 Box,3.99,0,17328,https://www.dkoldies.com/gt64-championship-ed-n64-empty-n64-box/ +Fox Sports College Hoops 99 N64 - Empty N64 Box,3.99,0,17165,https://www.dkoldies.com/fox-sports-college-hoops-99-n64-empty-n64-box/ +Fox Sports College Hoops 99 - N64 Manual,3.99,0,29658,https://www.dkoldies.com/fox-sports-college-hoops-99-n64-manual/ +Flying Dragon N64 - Empty N64 Box,3.99,0,17159,https://www.dkoldies.com/flying-dragon-n64-empty-n64-box/ +Fighting Force 64 N64 - Empty N64 Box,3.99,0,17284,https://www.dkoldies.com/fighting-force-64-n64-empty-n64-box/ +Fighting Force 64 - N64 Manual,3.99,0,29777,https://www.dkoldies.com/fighting-force-64-n64-manual/ +Fighters Destiny N64 - Empty N64 Box,3.99,0,17209,https://www.dkoldies.com/fighters-destiny-n64-empty-n64-box/ +Fighters Destiny - N64 Manual,3.99,0,29702,https://www.dkoldies.com/fighters-destiny-n64-manual/ +FIFA Soccer 64 N64 - Empty N64 Box,3.99,0,17334,https://www.dkoldies.com/fifa-soccer-64-n64-empty-n64-box/ +F1 Pole Position 64 N64 - Empty N64 Box,3.99,0,17430,https://www.dkoldies.com/f1-pole-position-64-n64-empty-n64-box/ +Extreme-G 2 (XG2) - N64 Manual,3.99,0,29814,https://www.dkoldies.com/extreme-g-2-xg2-n64-manual/ +Extreme-G 2 (XG2) - Empty N64 Box,3.99,0,17321,https://www.dkoldies.com/extreme-g-2-xg2-empty-n64-box/ +Excitebike 64 N64 - Empty N64 Box,3.99,0,17273,https://www.dkoldies.com/excitebike-64-n64-empty-n64-box/ +Elmo's Number Journey - N64 Manual,3.99,0,29640,https://www.dkoldies.com/elmos-number-journey-n64-manual/ +Elmo's Letter Adventure - N64 Manual,3.99,0,29913,https://www.dkoldies.com/elmos-letter-adventure-n64-manual/ +ECW Hardcore Revolution N64 - Empty N64 Box,3.99,0,17174,https://www.dkoldies.com/ecw-hardcore-revolution-n64-empty-n64-box/ +Dual Heroes N64 - Empty N64 Box,3.99,0,17335,https://www.dkoldies.com/dual-heroes-n64-empty-n64-box/ +Donald Duck Goin Quakers - N64 Manual,3.99,0,29898,https://www.dkoldies.com/donald-duck-goin-quakers-n64-manual/ +Destruction Derby N64 - Empty N64 Box,3.99,0,17266,https://www.dkoldies.com/destruction-derby-n64-empty-n64-box/ +Deadly Arts N64 - Empty N64 Box,3.99,0,17426,https://www.dkoldies.com/deadly-arts-n64-empty-n64-box/ +Daikatana N64 - Empty N64 Box,3.99,0,17265,https://www.dkoldies.com/daikatana-n64-empty-n64-box/ +Cyber Tiger Woods Golf N64 - Empty N64 Box,3.99,0,17198,https://www.dkoldies.com/cyber-tiger-woods-golf-n64-empty-n64-box/ +Cruis'n Exotica N64 - Empty N64 Box,3.99,0,17195,https://www.dkoldies.com/cruisn-exotica-n64-empty-n64-box/ +Charlie Blast's Territory N64 - Empty N64 Box,3.99,0,17264,https://www.dkoldies.com/charlie-blasts-territory-n64-empty-n64-box/ +Chameleon Twist 2 N64 - Empty N64 Box,3.99,0,17410,https://www.dkoldies.com/chameleon-twist-2-n64-empty-n64-box/ +Carmageddon 64 N64 - Empty N64 Box,3.99,0,17324,https://www.dkoldies.com/carmageddon-64-n64-empty-n64-box/ +California Speed N64 - Empty N64 Box,3.99,0,17143,https://www.dkoldies.com/california-speed-n64-empty-n64-box/ +Buck Bumble N64 - Empty N64 Box,3.99,0,17406,https://www.dkoldies.com/buck-bumble-n64-empty-n64-box/ +Bottom of The 9TH N64 - Empty N64 Box,3.99,0,17306,https://www.dkoldies.com/bottom-of-the-9th-n64-empty-n64-box/ +Bomberman Hero N64 - Empty N64 Box,3.99,0,17188,https://www.dkoldies.com/bomberman-hero-n64-empty-n64-box/ +Blues Brothers 2000 N64 - Empty N64 Box,3.99,0,17428,https://www.dkoldies.com/blues-brothers-2000-n64-empty-n64-box/ +Big Mountain 2000 64 N64 - Empty N64 Box,3.99,0,17341,https://www.dkoldies.com/big-mountain-2000-64-n64-empty-n64-box/ +Beetle Adventure Racing N64 - Empty N64 Box,3.99,0,17354,https://www.dkoldies.com/beetle-adventure-racing-n64-empty-n64-box/ +Battletanx Global Assault (Battle Tanx) N64 - Empty N64 Box,3.99,0,17395,https://www.dkoldies.com/battletanx-global-assault-battle-tanx-n64-empty-n64-box/ +Battle Zone Rise of The Black Dogs 64 N64 - Empty N64 Box,3.99,0,17357,https://www.dkoldies.com/battle-zone-rise-of-the-black-dogs-64-n64-empty-n64-box/ +Bass Hunter 64 N64 - Empty N64 Box,3.99,0,17352,https://www.dkoldies.com/bass-hunter-64-n64-empty-n64-box/ +Automobili Lamborghini N64 - Empty N64 Box,3.99,0,17258,https://www.dkoldies.com/automobili-lamborghini-n64-empty-n64-box/ +Asteroids Hyper 64 N64 - Empty N64 Box,3.99,0,17214,https://www.dkoldies.com/asteroids-hyper-64-n64-empty-n64-box/ +Army Men Air Combat - N64 Manual,3.99,0,29772,https://www.dkoldies.com/army-men-air-combat-n64-manual/ +Armorines Project SWARM N64 - Empty N64 Box,3.99,0,17429,https://www.dkoldies.com/armorines-project-swarm-n64-empty-n64-box/ +All Star Tennis 99 N64 - Empty N64 Box,3.99,0,17223,https://www.dkoldies.com/all-star-tennis-99-n64-empty-n64-box/ +All Star Baseball 2001 N64 - Empty N64 Box,3.99,0,17311,https://www.dkoldies.com/all-star-baseball-2001-n64-empty-n64-box/ +All Star Baseball 2000 N64 - Empty N64 Box,3.99,0,17268,https://www.dkoldies.com/all-star-baseball-2000-n64-empty-n64-box/ +All Star Baseball 2000 - N64 Manual,3.99,0,29761,https://www.dkoldies.com/all-star-baseball-2000-n64-manual/ +Aerofighters Assault - N64 Manual,3.99,0,29736,https://www.dkoldies.com/aerofighters-assault-n64-manual/ +Aero Gauge N64 - Empty N64 Box,3.99,0,17196,https://www.dkoldies.com/aero-gauge-n64-empty-n64-box/ +Namco Museum 64 - N64 Manual,2.99,4.99,29696,https://www.dkoldies.com/namco-museum-64-n64-manual/ +Complete NFL Quarterback Club 2000 QB- N64,2.99,0,22271,https://www.dkoldies.com/complete-nfl-quarterback-club-2000-qb-n64/ +Waialae Country Club Golf - N64 Manual,2.99,0,29669,https://www.dkoldies.com/waialae-country-club-golf-n64-manual/ +WWF War Zone - N64 Manual,2.99,0,29659,https://www.dkoldies.com/wwf-war-zone-n64-manual/ +Virtual Pool - N64 Manual,2.99,0,29653,https://www.dkoldies.com/virtual-pool-n64-manual/ +VRally Edition 99 - N64 Manual,2.99,0,29646,https://www.dkoldies.com/vrally-edition-99-n64-manual/ +Twisted Edge Extreme Snowboarding - N64 Manual,2.99,0,29686,https://www.dkoldies.com/twisted-edge-extreme-snowboarding-n64-manual/ +Top Gear Hyperbike - N64 Manual,2.99,0,29860,https://www.dkoldies.com/top-gear-hyperbike-n64-manual/ +Roadsters - N64 Manual,2.99,0,29792,https://www.dkoldies.com/roadsters-n64-manual/ +Razor Freestyle Scooter - N64 Manual,2.99,0,29908,https://www.dkoldies.com/razor-freestyle-scooter-n64-manual/ +Rat Attack - N64 Manual,2.99,0,29701,https://www.dkoldies.com/rat-attack-n64-manual/ +Nintendo 64 Controller Pak - N64 Manual,2.99,0,41041,https://www.dkoldies.com/nintendo-64-controller-pak-n64-manual/ +Nagano Winter Olympics '98 - N64 Manual,2.99,0,29734,https://www.dkoldies.com/nagano-winter-olympics-98-n64-manual/ +NHL Breakaway 98 - N64 Manual,2.99,0,29708,https://www.dkoldies.com/nhl-breakaway-98-n64-manual/ +NHL Blades of Steel '99 - N64 Manual,2.99,0,29803,https://www.dkoldies.com/nhl-blades-of-steel-99-n64-manual/ +NFL Quarterback Club 99 - N64 Manual,2.99,0,29677,https://www.dkoldies.com/nfl-quarterback-club-99-n64-manual/ +NFL Quarterback Club 2000 QB - N64 Manual,2.99,0,29735,https://www.dkoldies.com/nfl-quarterback-club-2000-qb-n64-manual/ +NBA Live 99 - N64 Manual,2.99,0,29670,https://www.dkoldies.com/nba-live-99-n64-manual/ +NBA Courtside - N64 Manual,2.99,0,29713,https://www.dkoldies.com/nba-courtside-n64-manual/ +Monaco Grand Prix - N64 Manual,2.99,0,29932,https://www.dkoldies.com/monaco-grand-prix-n64-manual/ +Madden 2000 - N64 Manual,2.99,0,29673,https://www.dkoldies.com/madden-2000-n64-manual/ +MRC Multi Racing Championship - N64 Manual,2.99,0,29823,https://www.dkoldies.com/mrc-multi-racing-championship-n64-manual/ +Knife Edge Nose Gunner - N64 Manual,2.99,0,29690,https://www.dkoldies.com/knife-edge-nose-gunner-n64-manual/ +International Superstar Soccer '98 - N64 Manual,2.99,0,29928,https://www.dkoldies.com/international-superstar-soccer-98-n64-manual/ +In The Zone 99 - N64 Manual,2.99,0,29712,https://www.dkoldies.com/in-the-zone-99-n64-manual/ +In The Zone 98 - N64 Manual,2.99,0,29715,https://www.dkoldies.com/in-the-zone-98-n64-manual/ +In The Zone 2000 - N64 Manual,2.99,0,29651,https://www.dkoldies.com/in-the-zone-2000-n64-manual/ +F1 World Grand Prix - N64 Manual,2.99,0,29807,https://www.dkoldies.com/f1-world-grand-prix-n64-manual/ +F1 Pole Position 64 - N64 Manual,2.99,0,29923,https://www.dkoldies.com/f1-pole-position-64-n64-manual/ +Dual Heroes - N64 Manual,2.99,0,29828,https://www.dkoldies.com/dual-heroes-n64-manual/ +Deadly Arts - N64 Manual,2.99,0,29919,https://www.dkoldies.com/deadly-arts-n64-manual/ +Daikatana - N64 Manual,2.99,0,29758,https://www.dkoldies.com/daikatana-n64-manual/ +Cyber Tiger Woods Golf - N64 Manual,2.99,0,29691,https://www.dkoldies.com/cyber-tiger-woods-golf-n64-manual/ +Consumer Information and Precautions - N64 Manual,2.99,0,35700,https://www.dkoldies.com/consumer-information-and-precautions-n64-manual/ +Charlie Blast's Territory - N64 Manual,2.99,0,29757,https://www.dkoldies.com/charlie-blasts-territory-n64-manual/ +Blues Brothers 2000 - N64 Manual,2.99,0,29921,https://www.dkoldies.com/blues-brothers-2000-n64-manual/ +Bio Freaks - N64 Manual,2.99,0,29684,https://www.dkoldies.com/bio-freaks-n64-manual/ +Big Mountain 2000 64 - N64 Manual,2.99,0,29834,https://www.dkoldies.com/big-mountain-2000-64-n64-manual/ +Battle Zone Rise of The Black Dogs 64 - N64 Manual,2.99,0,29850,https://www.dkoldies.com/battle-zone-rise-of-the-black-dogs-64-n64-manual/ +All Star Tennis 99 - N64 Manual,2.99,0,29716,https://www.dkoldies.com/all-star-tennis-99-n64-manual/ +NFL Quarterback Club 98 - N64 Manual,1.99,2.99,29664,https://www.dkoldies.com/nfl-quarterback-club-98-n64-manual/ +Madden Football 64 - N64 Manual,1.99,2.99,29668,https://www.dkoldies.com/madden-football-64-n64-manual/ +Madden 99 - N64 Manual,1.99,2.99,29656,https://www.dkoldies.com/madden-99-n64-manual/ +All Star Baseball 99 - N64 Manual,1.99,0,29665,https://www.dkoldies.com/all-star-baseball-99-n64-manual/ +RF Unit - Nintendo 64 (N64),0.99,6.99,31685,https://www.dkoldies.com/rf-unit-nintendo-64-n64/ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..80c8632 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +flask==3.0.0 +requests==2.31.0 +beautifulsoup4==4.12.2 +gunicorn==21.2.0 +Pillow==10.3.0 diff --git a/scrape_prices.py b/scrape_prices.py new file mode 100644 index 0000000..b2e7680 --- /dev/null +++ b/scrape_prices.py @@ -0,0 +1,163 @@ +import requests +from bs4 import BeautifulSoup +import json +import re +import time + +BASE_URL = "https://www.pricecharting.com/console/nintendo-64" +HEADERS = { + "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.5", + "Referer": "https://www.pricecharting.com/console/nintendo-64", +} + +def parse_price(price_str): + if not price_str: + return None + cleaned = re.sub(r"[^\d.]", "", price_str.strip()) + try: + return float(cleaned) if cleaned else None + except ValueError: + return None + +def parse_table(soup): + """Return list of (title, loose_price) tuples from games_table.""" + table = soup.find("table", id="games_table") + if not table: + return [] + tbody = table.find("tbody") or table + rows = tbody.find_all("tr") + games = [] + for row in rows: + title_cell = row.find("td", class_=lambda c: c and "title" in c.split()) + if not title_cell: + continue + a_tag = title_cell.find("a") + title = a_tag.get_text(strip=True) if a_tag else None + if not title: + continue + loose_cell = row.find("td", class_=lambda c: c and "used_price" in c.split()) + if loose_cell: + span = loose_cell.find("span", class_="js-price") + price_text = span.get_text(strip=True) if span else loose_cell.get_text(strip=True) + else: + price_text = None + games.append((title, parse_price(price_text))) + return games + +def get_cursor_form(soup): + """Find the 'more results' form and extract its hidden fields + cursor value.""" + for form in soup.find_all("form"): + submit = form.find("input", type="submit") + if submit and "more" in (submit.get("value") or "").lower(): + fields = {} + for inp in form.find_all("input"): + name = inp.get("name") + value = inp.get("value", "") + if name: + fields[name] = value + return fields + return None + +# ---- Initial GET ---- +print("=" * 60) +print("N64 PRICE SCRAPER - PriceCharting.com") +print("=" * 60) + +params = {"q": "", "sort": "name", "dir": "asc", "status": "", "minimum-rating": ""} +print(f"\nFetching initial page...") +r = requests.get(BASE_URL, params=params, headers=HEADERS, timeout=30) +print(f" Status: {r.status_code} | {len(r.text)} bytes") + +soup = BeautifulSoup(r.text, "html.parser") + +# Extract reported total +total_hint = None +for m in re.finditer(r"(\d+)\s*items", soup.get_text()): + total_hint = int(m.group(1)) +print(f" Reported total items on page: {total_hint}") + +all_results = {} +batch = parse_table(soup) +for title, price in batch: + all_results[title] = price +print(f" Parsed {len(batch)} games from initial page | Running total: {len(all_results)}") + +# ---- Cursor-based pagination via POST ---- +fetch_num = 1 +while True: + cursor_fields = get_cursor_form(soup) + if not cursor_fields: + print("\n No 'more results' form found - done paginating.") + break + + cursor = cursor_fields.get("cursor", "?") + fetch_num += 1 + print(f"\nFetching batch {fetch_num} (cursor={cursor})...") + + # POST with form fields (same URL) + post_headers = {**HEADERS, "Content-Type": "application/x-www-form-urlencoded"} + r = requests.post(BASE_URL, data=cursor_fields, headers=post_headers, timeout=30) + print(f" Status: {r.status_code} | {len(r.text)} bytes") + + soup = BeautifulSoup(r.text, "html.parser") + batch = parse_table(soup) + if not batch: + print(" No games in this response - stopping.") + break + + new_count = 0 + for title, price in batch: + if title not in all_results: + all_results[title] = price + new_count += 1 + + print(f" Parsed {len(batch)} games ({new_count} new) | Running total: {len(all_results)}") + + if new_count == 0: + print(" No new games - stopping.") + break + + time.sleep(0.5) + +# ---- Results ---- +print(f"\n{'=' * 60}") +print(f"SCRAPE COMPLETE - {len(all_results)} unique games collected") +print(f"{'=' * 60}\n") + +print("HTML STRUCTURE OF FIRST 3 ROWS (already shown above in detail)") +print("Key structure confirmed:") +print(" ") +print(" GAME NAME") +print(" $XX.XX") +print(" ...") +print(" ...") +print(" \n") + +print(f"{'=' * 60}") +print("FIRST 20 RESULTS:") +print(f"{'=' * 60}") +for i, (title, price) in enumerate(list(all_results.items())[:20]): + price_str = f"${price:.2f}" if price is not None else "N/A" + print(f"{i+1:3}. {title:<55} {price_str}") + +# Save JSON +output_path = "/tmp/pc_prices.json" +with open(output_path, "w", encoding="utf-8") as f: + json.dump(all_results, f, indent=2, ensure_ascii=False) + +prices_only = [p for p in all_results.values() if p is not None] +no_price = sum(1 for p in all_results.values() if p is None) + +print(f"\n{'=' * 60}") +print("SUMMARY STATS") +print(f"{'=' * 60}") +print(f" Total games saved: {len(all_results)}") +print(f" Games with price data: {len(prices_only)}") +print(f" Games with N/A price: {no_price}") +if prices_only: + print(f" Cheapest game: ${min(prices_only):.2f}") + print(f" Most expensive game: ${max(prices_only):.2f}") + print(f" Average loose price: ${sum(prices_only)/len(prices_only):.2f}") +print(f"\nSaved to: {output_path}") diff --git a/scrape_rarity.py b/scrape_rarity.py new file mode 100644 index 0000000..822270b --- /dev/null +++ b/scrape_rarity.py @@ -0,0 +1,138 @@ +""" +scrape_rarity.py +Fetches N64 rarity data from rarityguide.com and saves to /tmp/rarity.json +""" + +import requests +from bs4 import BeautifulSoup +import json +import re +import warnings +warnings.filterwarnings("ignore") # suppress urllib3/ssl noise + +HEADERS = { + "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 Chrome/120 Safari/537.36" +} +BASE_URL = "https://www.rarityguide.com/n64_view.php" + +# ── helpers ──────────────────────────────────────────────────────────────────── + +def fetch_html(params): + resp = requests.get(BASE_URL, headers=HEADERS, params=params, timeout=30) + resp.raise_for_status() + return resp.text + + +def parse_rarity_alt(alt_text): + """'92 percent (Ultra Rare)' -> (92.0, 'Ultra Rare')""" + if not alt_text: + return None, None + m_pct = re.search(r'(\d+(?:\.\d+)?)\s*percent', alt_text, re.IGNORECASE) + m_lbl = re.search(r'\(([^)]+)\)', alt_text) + if m_pct: + return float(m_pct.group(1)), (m_lbl.group(1).strip() if m_lbl else "") + return None, None + + +def extract_games(html): + """Return dict of {title: {rarity_pct, rarity_label}} from one page.""" + soup = BeautifulSoup(html, "html.parser") + pct_imgs = soup.find_all("img", src=re.compile(r"percent\d+\.gif")) + page_results = {} + for img in pct_imgs: + alt = img.get("alt", "") + pct, label = parse_rarity_alt(alt) + if pct is None: + continue + tr = img.find_parent("tr") + if not tr: + continue + tds = tr.find_all("td", recursive=False) + # Title is in td[1] (td[0] is a blank selector cell) + if len(tds) < 2: + continue + title = tds[1].get_text(strip=True) + if title: + page_results[title] = {"rarity_pct": pct, "rarity_label": label} + return page_results + + +def print_raw_rows(html, n=3): + """Print raw HTML for the first n game rows.""" + soup = BeautifulSoup(html, "html.parser") + pct_imgs = soup.find_all("img", src=re.compile(r"percent\d+\.gif")) + print(f"\n--- First {n} raw game rows ---") + for i, img in enumerate(pct_imgs[:n]): + tr = img.find_parent("tr") + print(f"\n[Data Row {i}]\n{tr}\n") + + +# ── main ─────────────────────────────────────────────────────────────────────── + +# Page 1 (FirstRecord omitted = 1) +print("Fetching page 1 (FirstRecord=1)...") +html1 = fetch_html({"SortDirection": "desc", "SortField": "5", "recordsPerPage": "100"}) +with open("/tmp/rarity_raw.html", "w", encoding="utf-8") as f: + f.write(html1) +print(f"Saved raw HTML ({len(html1):,} bytes) to /tmp/rarity_raw.html") + +# ── structure diagnostics ────────────────────────────────────────────────────── +soup_diag = BeautifulSoup(html1, "html.parser") +all_tables = soup_diag.find_all("table") +print(f"\nTotal tags: {len(all_tables)}") +for i, t in enumerate(all_tables): + print(f" Table {i}: id={t.get('id')!r} class={t.get('class')!r} rows={len(t.find_all('tr'))}") + +pct_imgs_diag = soup_diag.find_all("img", src=re.compile(r"percent\d+\.gif")) +print(f"\nPercent tags found: {len(pct_imgs_diag)}") +print(f" (recordsPerPage=300 is ignored by server; cap is 100 per page)") + +# Print first 3 raw data rows +print_raw_rows(html1, n=3) + +# ── collect all pages ────────────────────────────────────────────────────────── +all_results = {} +all_results.update(extract_games(html1)) +print(f"\nPage 1: {len(all_results)} games collected.") + +# Pages 2 and 3 via FirstRecord offset +for first_record in [101, 201]: + print(f"Fetching page with FirstRecord={first_record}...") + phtml = fetch_html({ + "FirstRecord": str(first_record), + "recordsPerPage": "100", + "SortDirection": "desc", + "SortField": "5" + }) + page_games = extract_games(phtml) + new_games = {k: v for k, v in page_games.items() if k not in all_results} + all_results.update(new_games) + print(f" -> {len(page_games)} on this page, {len(new_games)} new. Running total: {len(all_results)}") + if len(new_games) == 0: + print(" No new games — stopping pagination.") + break + +# ── save JSON ────────────────────────────────────────────────────────────────── +with open("/tmp/rarity.json", "w", encoding="utf-8") as f: + json.dump(all_results, f, indent=2, ensure_ascii=False) +print(f"\nSaved {len(all_results)} games to /tmp/rarity.json") + +# ── final stats ─────────────────────────────────────────────────────────────── +if all_results: + pcts = [v["rarity_pct"] for v in all_results.values()] + max_game = max(all_results, key=lambda k: all_results[k]["rarity_pct"]) + min_game = min(all_results, key=lambda k: all_results[k]["rarity_pct"]) + + from collections import Counter + label_counts = Counter(v["rarity_label"] for v in all_results.values()) + + print(f""" +=== FINAL STATS === +Total games : {len(all_results)} +Max rarity : {all_results[max_game]['rarity_pct']:.0f}% ({all_results[max_game]['rarity_label']}) -> {max_game} +Min rarity : {all_results[min_game]['rarity_pct']:.0f}% ({all_results[min_game]['rarity_label']}) -> {min_game} +Avg rarity : {sum(pcts)/len(pcts):.1f}% + +Rarity label distribution:""") + for label, count in sorted(label_counts.items(), key=lambda x: -x[1]): + print(f" {label or '(unlabeled)':<20} {count:>4} games") diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..87f28e3 --- /dev/null +++ b/static/index.html @@ -0,0 +1,1902 @@ + + + + + + N64 Collection Tracker + + + + + + +
+
+ +
+ + + + +
+
+ OWNED +
+
+ UNOWNED +
+
+ COMPLETE +
+
+ VALUE +
+
+ TO BUY +
+ + + + +
+
+ + +
+
+ COLLECTION PROGRESS + 0 / 0 +
+
+
+
+
+ + +
+ 🔍 + +
+ + +
+ + + +
+ +
+
+ + +
+
+ + +
+ SORT: + + + + + + + +
+ +
+
+
LOADING...
+
+ + +
+ + + + + + + + +
+
🎮
+

NO GAMES FOUND

+
+
+ + +
+ +
+ + +
+ + +
+
+

🔒 ADMIN LOGIN

+
+ + +
+
Wrong password
+ + +
+
+ + +
+
+

⚙ SETTINGS

+ +
+ + +
+
+ + +
+
+ + +
+
+
Password changed!
+ + + +
+
+ + + +