Calculator Tools Calculator Tools
Create

Bradley Free Range Game Rating

Nov 16, 2023

About this app

Rate the graphics of Bradley Free Range game across various console generations.

Bradley Free Range Game Rating

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Bradley Free Range Game Rating</title>
<meta name="description" content="Rate the graphics of Bradley Free Range game across various console generations.">
<meta name="keywords" content="Bradley, Game, Rating, Graphics, Consoles, Super Jump, CRUCIAL">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Old+English+Text+MT&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">

<script type="text/javascript">
try {
const consoles = [
'RTX', 'Xbox Series X', 'PS5', 'Xbox One', 'PS4', 'Nintendo Switch', 'GTX', 'Xbox 360', 'Wii U', 'PS3', 'Wii', 'Xbox', 'PS2', 'N64', 'Dreamcast', 'PS1', 'Virtual Boy 3D', 'PC (2000s)', 'iOS/Android 3D graphics', '3DS', 'Sega Saturn', 'PSX', 'PSP', 'PSVita', 'Atari Jaguar', 'Sega 32X', 'Amiga CD32', 'Nintendo Switch Lite', 'OnLive', 'Windows 98 3D graphics', 'Unity', 'Unreal Engine', 'Godot'
];

const ratings = Array(5000).fill(null).map(() => Math.floor(Math.random() * 11));

const getConsoleByRank = rank => {
// Assuming a linear distribution for simplicity
const index = Math.floor((consoles.length - 1) * rank / 5000);
return consoles[index];
};

document.addEventListener("DOMContentLoaded", function() {
const mainContainer = document.getElementById('main-container');
for (let i = 0; i < 5000; i++) {
const button = document.createElement('button');
button.classList.add('btn', 'm-1');
button.style.fontFamily = 'Press Start 2P';
button.textContent = `Copy ${i + 1}`;
button.onclick = function() {
const rank = i < 2500 ? `Best #${i + 1}` : `Worst #${i - 2500 + 1}`;
const gameConsole = getConsoleByRank(i);
const graphicsRating = ratings[i];
const randomVideoUrl = [
"https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"https://www.youtube.com/watch?v=SC4xMk98Pdc",
"https://www.youtube.com/watch?v=9bZkp7q19f0",
"https://www.youtube.com/watch?v=3tmd-ClpJxA",
"https://www.youtube.com/watch?v=JGwWNGJdvx8",
"https://www.youtube.com/watch?v=2Vv-BfVoq4g",
"https://www.youtube.com/watch?v=iik25wqIuFo",
"https://www.youtube.com/watch?v=YO9I6v7suR4",
"https://www.youtube.com/watch?v=5v6aMvD8q1k",
"https://www.youtube.com/watch?v=U9Qa9u1A7-A"
];
const randomCountry = [
"United States",
"Canada",
"United Kingdom",
"Australia",
"Germany",
"France",
"Italy",
"Spain",
"Japan",
"South Korea"
];
const randomPrice = Math.floor(Math.random() * (60 - 10 + 1)) + 10;
const randomLength = Math.floor(Math.random() * (100 - 10 + 1)) + 10;
const randomSuperJump = Math.floor(Math.random() * (10 - 1 + 1)) + 1;
const randomFPS = Math.floor(Math.random() * (120 - 30 + 1)) + 30;
const randomVideoIndex = Math.floor(Math.random() * randomVideoUrl.length);
const videoUrl = randomVideoUrl[randomVideoIndex];
const country = randomCountry[randomVideoIndex];
alert(`Copy: ${rank}\nConsole: ${gameConsole}\nGraphics Rating: ${graphicsRating}/10\nVideo URL: ${videoUrl}\nCountry: ${country}\nPrice: $${randomPrice}\nLength of Building: ${randomLength} minutes\nMax Super Jump Bar: ${randomSuperJump}\nFPS: ${randomFPS}`);
};
mainContainer.appendChild(button);
}
});

} catch (error) {
throw error;
}
</script>

<style>
body {
font-family: 'Old English Text MT', serif;
background: linear-gradient(135deg, #89f7fe, #66a6ff);
color: #333;
}
#main-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}
button {
font-size: 10px;
color: #fff;
background-color: #ff5252;
border: none;
border-radius: 4px;
padding: 5px 10px;
cursor: pointer;
transition: transform 0.2s;
}
button:hover {
transform: scale(1.1);
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- Buttons will be populated here by JavaScript -->
</div>
</body>
</html>