Skip to content

Instantly share code, notes, and snippets.

@VixikHD
Created April 14, 2021 18:45
Show Gist options
  • Save VixikHD/241fdd02dba69f62ec91c571a305c8f8 to your computer and use it in GitHub Desktop.
Save VixikHD/241fdd02dba69f62ec91c571a305c8f8 to your computer and use it in GitHub Desktop.
<?php
declare(strict_types=1);
require "vendor/autoload.php";
$outputData = [
"ocean" => 0,
"plains" => 1,
"desert" => 2,
"mountains" => 3,
"forest" => 4,
"swamp" => 5,
"river" => 7,
"hell" => 8,
"ice_plains" => 12,
"mushroom_fields" => 14,
"jungle" => 21,
"dark_forest" => 29,
"savanna" => 35,
"badlands" => 37,
];
echo json_encode($outputData);
@dadodasyra
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment