-
Notifications
You must be signed in to change notification settings - Fork 2
/
raw-data.php
59 lines (59 loc) · 5.32 KB
/
raw-data.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Raw Data | browse.wf</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body data-bs-theme="dark">
<?php require "components/navbar.php"; ?>
<div class="container p-3">
<p>This domain aims to resolve Warframe's internal paths, returning data relevant to the queried object, with some examples being:</p>
<ul>
<li><a href="/Lotus/Language/Locations/Moon" target="_blank">/Lotus/Language/Locations/Moon</a> (Language tag)</li>
<li><a href="/Lotus/Powersuits/Excalibur/Excalibur" target="_blank">/Lotus/Powersuits/Excalibur/Excalibur</a> (Warframe)</li>
<li><a href="/Lotus/Weapons/Tenno/Melee/LongSword/LongSword" target="_blank">/Lotus/Weapons/Tenno/Melee/LongSword/LongSword</a> (Weapon)</li>
<!--<li><a href="/Lotus/Powersuits/PowersuitAbilities/HelminthEfficiencyAbility" target="_blank">/Lotus/Powersuits/PowersuitAbilities/HelminthEfficiencyAbility</a> (Ability)</li>-->
<li><a href="/Lotus/Interface/Icons/Player/LotusSymbol.png" target="_blank">/Lotus/Interface/Icons/Player/LotusSymbol.png</a> (Image)</li>
</ul>
<h2>Data Exploration</h2>
<p>The <a href="https://github.com/callumlocke/json-formatter" target="_blank">JSON Formatter</a> extension is recommended, as it allows you to click on paths (strings starting with a slash).</p>
<p>The following files from the <a href="https://github.com/calamity-inc/warframe-public-export-plus" target="_blank">warframe-public-export-plus</a> project are excellent starting points for data exploration:</p>
<ul>
<li><a href="warframe-public-export-plus/ExportAbilities.json" target="_blank">ExportAbilities</a></li>
<li><a href="warframe-public-export-plus/ExportAchievements.json" target="_blank">ExportAchievements</a></li>
<li><a href="warframe-public-export-plus/ExportArcanes.json" target="_blank">ExportArcanes</a></li>
<li><a href="warframe-public-export-plus/ExportAvionics.json" target="_blank">ExportAvionics</a></li>
<li><a href="warframe-public-export-plus/ExportBoosterPacks.json" target="_blank">ExportBoosterPacks</a></li>
<li><a href="warframe-public-export-plus/ExportBundles.json" target="_blank">ExportBundles</a></li>
<li><a href="warframe-public-export-plus/ExportCustoms.json" target="_blank">ExportCustoms</a></li>
<li><a href="warframe-public-export-plus/ExportDrones.json" target="_blank">ExportDrones</a></li>
<li><a href="warframe-public-export-plus/ExportEnemies.json" target="_blank">ExportEnemies</a></li>
<li><a href="warframe-public-export-plus/ExportFlavour.json" target="_blank">ExportFlavour</a></li>
<li><a href="warframe-public-export-plus/ExportFocusUpgrades.json" target="_blank">ExportFocusUpgrades</a></li>
<li><a href="warframe-public-export-plus/ExportFusionBundles.json" target="_blank">ExportFusionBundles</a></li>
<li><a href="warframe-public-export-plus/ExportGear.json" target="_blank">ExportGear</a></li>
<li><a href="warframe-public-export-plus/ExportIntrinsics.json" target="_blank">ExportIntrinsics</a></li>
<li><a href="warframe-public-export-plus/ExportKeys.json" target="_blank">ExportKeys</a></li>
<li><a href="warframe-public-export-plus/ExportMisc.json" target="_blank">ExportMisc</a></li>
<li><a href="warframe-public-export-plus/ExportModSet.json" target="_blank">ExportModSet</a></li>
<li><a href="warframe-public-export-plus/ExportNightwave.json" target="_blank">ExportNightwave</a></li>
<li><a href="warframe-public-export-plus/ExportRailjackWeapons.json" target="_blank">ExportRailjackWeapons</a></li>
<li><a href="warframe-public-export-plus/ExportRecipes.json" target="_blank">ExportRecipes</a></li>
<li><a href="warframe-public-export-plus/ExportRegions.json" target="_blank">ExportRegions</a></li>
<li><a href="warframe-public-export-plus/ExportRelics.json" target="_blank">ExportRelics</a></li>
<li><a href="warframe-public-export-plus/ExportResources.json" target="_blank">ExportResources</a></li>
<li><a href="warframe-public-export-plus/ExportRewards.json" target="_blank">ExportRewards</a></li>
<li><a href="warframe-public-export-plus/ExportSentinels.json" target="_blank">ExportSentinels</a></li>
<li><a href="warframe-public-export-plus/ExportSyndicates.json" target="_blank">ExportSyndicates</a></li>
<li><a href="warframe-public-export-plus/ExportTextIcons.json" target="_blank">ExportTextIcons</a></li>
<li><a href="warframe-public-export-plus/ExportUpgrades.json" target="_blank">ExportUpgrades</a></li>
<li><a href="warframe-public-export-plus/ExportVendors.json" target="_blank">ExportVendors</a></li>
<li><a href="warframe-public-export-plus/ExportWarframes.json" target="_blank">ExportWarframes</a></li>
<li><a href="warframe-public-export-plus/ExportWeapons.json" target="_blank">ExportWeapons</a></li>
</ul>
<h3>Arbitration Data</h3>
<p>The data behind the <a href="/arbys" target="_blank">arbitration schedule</a> is stored in the <a href="arbys.txt" target="_blank">arbys.txt</a>. Furthermore, the data prior to Update 37 is also still available in the <a href="arbys-old.txt" target="_blank">arbys-old.txt</a>.</p>
</div>
</body>
</html>