Add drop table tool to site
@ -11,8 +11,8 @@
|
|||||||
{% elsif crumb == "rules" %}
|
{% elsif crumb == "rules" %}
|
||||||
{% elsif crumb == "terms" %}
|
{% elsif crumb == "terms" %}
|
||||||
{% elsif crumb == "privacy" %}
|
{% elsif crumb == "privacy" %}
|
||||||
{% elsif crumb == "game_guide" %}
|
|
||||||
{% elsif crumb contains "=" %}
|
{% elsif crumb contains "=" %}
|
||||||
|
{% elsif crumb contains "_" %}
|
||||||
{% else %}
|
{% else %}
|
||||||
> <a href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a>
|
> <a href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -2,7 +2,9 @@
|
|||||||
<li class="top"><a href="/index.html" id="home" class="tl">{% include active-menu.html content="home" %}Home</span></a>
|
<li class="top"><a href="/index.html" id="home" class="tl">{% include active-menu.html content="home" %}Home</span></a>
|
||||||
<li class="top"><a id="play" class="tl" href="http://play.2009scape.org/wiki/doku.php?id=start"><span
|
<li class="top"><a id="play" class="tl" href="http://play.2009scape.org/wiki/doku.php?id=start"><span
|
||||||
class="tl">Wiki</span></a>
|
class="tl">Wiki</span></a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/services/m=data/drop-table/" class="fly"><span>Drop Tables & More</span></a></li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<!--class ts is active tl is inactive -->
|
<!--class ts is active tl is inactive -->
|
||||||
<li class="top"><a id="play" class="tl" href="/services/m=news/archives/">{% include active-menu.html content="news" %}Updates</span></a>
|
<li class="top"><a id="play" class="tl" href="/services/m=news/archives/">{% include active-menu.html content="news" %}Updates</span></a>
|
||||||
|
7
services/m=data/LICENSE
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Copyright 2021 downthecrop
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2
services/m=data/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# 2009-Droptables
|
||||||
|
https://downthecrop.github.io/2009-droptables
|
6
services/m=data/css/bootstrap.min.css
vendored
Normal file
132
services/m=data/css/style.css
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
body{
|
||||||
|
margin: 10px !important;
|
||||||
|
}
|
||||||
|
.stage {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
padding: 2rem 0;
|
||||||
|
margin: 0 -5%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stat-data{
|
||||||
|
background-color: #605443;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dot-pulse {
|
||||||
|
position: relative;
|
||||||
|
left: -9999px;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #9880ff;
|
||||||
|
color: #9880ff;
|
||||||
|
box-shadow: 9999px 0 0 -5px #9880ff;
|
||||||
|
animation: dotPulse 1.5s infinite linear;
|
||||||
|
animation-delay: .25s;
|
||||||
|
}
|
||||||
|
.dot-pulse::before, .dot-pulse::after {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #9880ff;
|
||||||
|
color: #9880ff;
|
||||||
|
}
|
||||||
|
.dot-pulse::before {
|
||||||
|
box-shadow: 9984px 0 0 -5px #9880ff;
|
||||||
|
animation: dotPulseBefore 1.5s infinite linear;
|
||||||
|
animation-delay: 0s;
|
||||||
|
}
|
||||||
|
.dot-pulse::after {
|
||||||
|
box-shadow: 10014px 0 0 -5px #9880ff;
|
||||||
|
animation: dotPulseAfter 1.5s infinite linear;
|
||||||
|
animation-delay: .5s;
|
||||||
|
}
|
||||||
|
@keyframes dotPulseBefore {
|
||||||
|
0% {
|
||||||
|
box-shadow: 9984px 0 0 -5px #9880ff;
|
||||||
|
}
|
||||||
|
30% {
|
||||||
|
box-shadow: 9984px 0 0 2px #9880ff;
|
||||||
|
}
|
||||||
|
60%, 100% {
|
||||||
|
box-shadow: 9984px 0 0 -5px #9880ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes dotPulse {
|
||||||
|
0% {
|
||||||
|
box-shadow: 9999px 0 0 -5px #9880ff;
|
||||||
|
}
|
||||||
|
30% {
|
||||||
|
box-shadow: 9999px 0 0 2px #9880ff;
|
||||||
|
}
|
||||||
|
60%, 100% {
|
||||||
|
box-shadow: 9999px 0 0 -5px #9880ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes dotPulseAfter {
|
||||||
|
0% {
|
||||||
|
box-shadow: 10014px 0 0 -5px #9880ff;
|
||||||
|
}
|
||||||
|
30% {
|
||||||
|
box-shadow: 10014px 0 0 2px #9880ff;
|
||||||
|
}
|
||||||
|
60%, 100% {
|
||||||
|
box-shadow: 10014px 0 0 -5px #9880ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
td{
|
||||||
|
border: 1px solid #94866d;
|
||||||
|
background-color: #e2dbc8;
|
||||||
|
padding: 10px !important;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
tbody{
|
||||||
|
margin: auto;
|
||||||
|
width: 100%;
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
.debug-hide{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.debug-show{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.debug-show p{
|
||||||
|
display: block;
|
||||||
|
max-width: 75%;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.always{
|
||||||
|
background-color: #AFEEEE;
|
||||||
|
}
|
||||||
|
.common{
|
||||||
|
background-color: #56E156;
|
||||||
|
}
|
||||||
|
.uncommon{
|
||||||
|
background-color: #FFED4C;
|
||||||
|
}
|
||||||
|
.rare{
|
||||||
|
background-color: #FF863C;
|
||||||
|
}
|
||||||
|
.veryrare{
|
||||||
|
background-color: #FF6262;
|
||||||
|
}
|
||||||
|
.hover-link img{
|
||||||
|
margin-top: 0px !important;
|
||||||
|
padding-left: 10px;
|
||||||
|
display: "inline";
|
||||||
|
}
|
||||||
|
|
74
services/m=data/drop-table/index.html
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
---
|
||||||
|
title: Drop Tables
|
||||||
|
layout: guide
|
||||||
|
---
|
||||||
|
<script src=".././js/jquery-3.6.0.min.js"></script>
|
||||||
|
<script src=".././js/common.js"></script>
|
||||||
|
<script src=".././js/bynpc.js"></script>
|
||||||
|
<link rel="stylesheet" href=".././css/style.css">
|
||||||
|
<style>
|
||||||
|
#navhome{
|
||||||
|
margin-top: 0px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div id="content">
|
||||||
|
<div id="rule">
|
||||||
|
<div class="sectionHeader">
|
||||||
|
<div class="left">
|
||||||
|
<div class="right">
|
||||||
|
<h1 class="plaque_medium">
|
||||||
|
{{ page.title }}
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="section">
|
||||||
|
<div class="article_theme_1">
|
||||||
|
<div class="article">
|
||||||
|
<div class="topshadow">
|
||||||
|
<div class="bottomborder">
|
||||||
|
<div class="leftshadow">
|
||||||
|
<div class="rightshadow">
|
||||||
|
<div class="leftcorner">
|
||||||
|
<div class="rightcorner">
|
||||||
|
<div class="bottombordershad">
|
||||||
|
<div class="bottomleftshad">
|
||||||
|
<div class="bottomrightshad">
|
||||||
|
<!-- CONTENT HERE -->
|
||||||
|
<div class="links"><a href=".././drop-table/">Drop Tables</a> | <a href=".././item-source/">Item Sources</a> | <a href=".././item-data/">Item Data</a></div>
|
||||||
|
<div id="wrapper" style="padding-bottom: 40px;">
|
||||||
|
<center>
|
||||||
|
<div class="headings">
|
||||||
|
<span class="headertitleleft"><span class="headertitleright" id="search">Drop Tables</span></span>
|
||||||
|
</div>
|
||||||
|
<input style="width:50%;"class="form-control input-lg" placeholder="NPC/Monster Name"
|
||||||
|
onkeyup="search(this);"></input>
|
||||||
|
<center>
|
||||||
|
<p>Notes: RDT Slot = Rare Drop Table <a href=".././rdt.html">(link)</a>, Summoning Charms are rolled separately <input type="checkbox" id="debug-toggle" name="debug"><lable>Show ID's</lable></p>
|
||||||
|
</center>
|
||||||
|
</center>
|
||||||
|
<div class="loading" style="display: none;">
|
||||||
|
<div class="stage">
|
||||||
|
<h1>Loading JSON</h1>
|
||||||
|
</div>
|
||||||
|
<div class="stage">
|
||||||
|
<div class="dot-pulse"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="dcontent" style="margin:auto;width: 80%;"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br class="clear">
|
||||||
|
</div>
|
||||||
|
</div>
|
BIN
services/m=data/img/alt/MagicStrength.png
Normal file
After Width: | Height: | Size: 313 B |
BIN
services/m=data/img/alt/Prayer_icon.png
Normal file
After Width: | Height: | Size: 194 B |
BIN
services/m=data/img/alt/RangedStrength.png
Normal file
After Width: | Height: | Size: 252 B |
BIN
services/m=data/img/alt/Strength_icon.png
Normal file
After Width: | Height: | Size: 181 B |
BIN
services/m=data/img/alt/magic.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
services/m=data/img/alt/ranged.png
Normal file
After Width: | Height: | Size: 244 B |
BIN
services/m=data/img/alt/summoning.png
Normal file
After Width: | Height: | Size: 866 B |
BIN
services/m=data/img/items/0.png
Normal file
After Width: | Height: | Size: 629 B |
BIN
services/m=data/img/items/1.png
Normal file
After Width: | Height: | Size: 678 B |
BIN
services/m=data/img/items/10.png
Normal file
After Width: | Height: | Size: 561 B |
BIN
services/m=data/img/items/100.png
Normal file
After Width: | Height: | Size: 943 B |
BIN
services/m=data/img/items/1000.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
services/m=data/img/items/10000.png
Normal file
After Width: | Height: | Size: 646 B |
BIN
services/m=data/img/items/10001.png
Normal file
After Width: | Height: | Size: 859 B |
BIN
services/m=data/img/items/10002.png
Normal file
After Width: | Height: | Size: 725 B |
BIN
services/m=data/img/items/10003.png
Normal file
After Width: | Height: | Size: 943 B |
BIN
services/m=data/img/items/10004.png
Normal file
After Width: | Height: | Size: 716 B |
BIN
services/m=data/img/items/10005.png
Normal file
After Width: | Height: | Size: 921 B |
BIN
services/m=data/img/items/10006.png
Normal file
After Width: | Height: | Size: 578 B |
BIN
services/m=data/img/items/10007.png
Normal file
After Width: | Height: | Size: 868 B |
BIN
services/m=data/img/items/10008.png
Normal file
After Width: | Height: | Size: 515 B |
BIN
services/m=data/img/items/10009.png
Normal file
After Width: | Height: | Size: 861 B |
BIN
services/m=data/img/items/1001.png
Normal file
After Width: | Height: | Size: 560 B |
BIN
services/m=data/img/items/10010.png
Normal file
After Width: | Height: | Size: 462 B |
BIN
services/m=data/img/items/10011.png
Normal file
After Width: | Height: | Size: 823 B |
BIN
services/m=data/img/items/10012.png
Normal file
After Width: | Height: | Size: 652 B |
BIN
services/m=data/img/items/10013.png
Normal file
After Width: | Height: | Size: 881 B |
BIN
services/m=data/img/items/10014.png
Normal file
After Width: | Height: | Size: 787 B |
BIN
services/m=data/img/items/10015.png
Normal file
After Width: | Height: | Size: 991 B |
BIN
services/m=data/img/items/10016.png
Normal file
After Width: | Height: | Size: 855 B |
BIN
services/m=data/img/items/10017.png
Normal file
After Width: | Height: | Size: 1007 B |
BIN
services/m=data/img/items/10018.png
Normal file
After Width: | Height: | Size: 838 B |
BIN
services/m=data/img/items/10019.png
Normal file
After Width: | Height: | Size: 995 B |
BIN
services/m=data/img/items/1002.png
Normal file
After Width: | Height: | Size: 815 B |
BIN
services/m=data/img/items/10020.png
Normal file
After Width: | Height: | Size: 832 B |
BIN
services/m=data/img/items/10021.png
Normal file
After Width: | Height: | Size: 1003 B |
BIN
services/m=data/img/items/10022.png
Normal file
After Width: | Height: | Size: 652 B |
BIN
services/m=data/img/items/10023.png
Normal file
After Width: | Height: | Size: 475 B |
BIN
services/m=data/img/items/10024.png
Normal file
After Width: | Height: | Size: 475 B |
BIN
services/m=data/img/items/10025.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10026.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10027.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10028.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10029.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
services/m=data/img/items/1003.png
Normal file
After Width: | Height: | Size: 754 B |
BIN
services/m=data/img/items/10030.png
Normal file
After Width: | Height: | Size: 788 B |
BIN
services/m=data/img/items/10031.png
Normal file
After Width: | Height: | Size: 471 B |
BIN
services/m=data/img/items/10032.png
Normal file
After Width: | Height: | Size: 820 B |
BIN
services/m=data/img/items/10033.png
Normal file
After Width: | Height: | Size: 701 B |
BIN
services/m=data/img/items/10034.png
Normal file
After Width: | Height: | Size: 531 B |
BIN
services/m=data/img/items/10035.png
Normal file
After Width: | Height: | Size: 902 B |
BIN
services/m=data/img/items/10036.png
Normal file
After Width: | Height: | Size: 1003 B |
BIN
services/m=data/img/items/10037.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
services/m=data/img/items/10038.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
services/m=data/img/items/10039.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
services/m=data/img/items/1004.png
Normal file
After Width: | Height: | Size: 944 B |
BIN
services/m=data/img/items/10040.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10041.png
Normal file
After Width: | Height: | Size: 775 B |
BIN
services/m=data/img/items/10042.png
Normal file
After Width: | Height: | Size: 942 B |
BIN
services/m=data/img/items/10043.png
Normal file
After Width: | Height: | Size: 1013 B |
BIN
services/m=data/img/items/10044.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10045.png
Normal file
After Width: | Height: | Size: 922 B |
BIN
services/m=data/img/items/10046.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10047.png
Normal file
After Width: | Height: | Size: 711 B |
BIN
services/m=data/img/items/10048.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
services/m=data/img/items/10049.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
services/m=data/img/items/1005.png
Normal file
After Width: | Height: | Size: 453 B |
BIN
services/m=data/img/items/10050.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
services/m=data/img/items/10051.png
Normal file
After Width: | Height: | Size: 706 B |
BIN
services/m=data/img/items/10052.png
Normal file
After Width: | Height: | Size: 905 B |
BIN
services/m=data/img/items/10053.png
Normal file
After Width: | Height: | Size: 587 B |
BIN
services/m=data/img/items/10054.png
Normal file
After Width: | Height: | Size: 852 B |
BIN
services/m=data/img/items/10055.png
Normal file
After Width: | Height: | Size: 468 B |
BIN
services/m=data/img/items/10056.png
Normal file
After Width: | Height: | Size: 800 B |
BIN
services/m=data/img/items/10057.png
Normal file
After Width: | Height: | Size: 568 B |
BIN
services/m=data/img/items/10058.png
Normal file
After Width: | Height: | Size: 831 B |
BIN
services/m=data/img/items/10059.png
Normal file
After Width: | Height: | Size: 468 B |
BIN
services/m=data/img/items/1006.png
Normal file
After Width: | Height: | Size: 797 B |
BIN
services/m=data/img/items/10060.png
Normal file
After Width: | Height: | Size: 806 B |
BIN
services/m=data/img/items/10061.png
Normal file
After Width: | Height: | Size: 808 B |
BIN
services/m=data/img/items/10062.png
Normal file
After Width: | Height: | Size: 956 B |
BIN
services/m=data/img/items/10063.png
Normal file
After Width: | Height: | Size: 589 B |
BIN
services/m=data/img/items/10064.png
Normal file
After Width: | Height: | Size: 852 B |
BIN
services/m=data/img/items/10065.png
Normal file
After Width: | Height: | Size: 972 B |
BIN
services/m=data/img/items/10066.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
services/m=data/img/items/10067.png
Normal file
After Width: | Height: | Size: 637 B |
BIN
services/m=data/img/items/10068.png
Normal file
After Width: | Height: | Size: 854 B |
BIN
services/m=data/img/items/10069.png
Normal file
After Width: | Height: | Size: 345 B |
BIN
services/m=data/img/items/1007.png
Normal file
After Width: | Height: | Size: 404 B |
BIN
services/m=data/img/items/10070.png
Normal file
After Width: | Height: | Size: 732 B |
BIN
services/m=data/img/items/10071.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
services/m=data/img/items/10072.png
Normal file
After Width: | Height: | Size: 731 B |
BIN
services/m=data/img/items/10073.png
Normal file
After Width: | Height: | Size: 345 B |