Merge branch 'master' of github.com:2009scape/2009scape.github.io

This commit is contained in:
dginovker 2022-02-17 21:49:26 +09:00
commit da9d8e6d05
20058 changed files with 2739 additions and 351 deletions

View File

@ -14,12 +14,11 @@ View the website live here: https://2009scape.github.io/
This website utilizes Jekyll to generate static pages.
1. Install Jekyll
- https://jekyllrb.com/docs/installation/
2. Build the site (Inside project root)
- Windows: jekyll serve
- Unix: bundle exec jekyll serve
3. Run a temporary web server in `_site/`
- `python -m http.server`
* https://jekyllrb.com/docs/installation/
2. Build and serve the site
* Inside project root run `jekyll serve` or alternatively:
- Windows: `serve.bat`
- Unix: `./serve.sh`
For faster builds locally (from about 80 seconds to about 6 seconds) add:
<pre>

View File

@ -1 +1,2 @@
encoding: UTF-8
encoding: UTF-8
exclude: [serve.bat, serve.sh, parse.py, README.md]

View File

@ -11,8 +11,8 @@
{% elsif crumb == "rules" %}
{% elsif crumb == "terms" %}
{% elsif crumb == "privacy" %}
{% elsif crumb == "game_guide" %}
{% elsif crumb contains "=" %}
{% elsif crumb contains "_" %}
{% 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>
{% endif %}

View File

@ -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 id="play" class="tl" href="http://play.2009scape.org/wiki/doku.php?id=start"><span
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>
<!--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>

View File

@ -15,6 +15,12 @@
@import url(/site/css/default/global-30.css);
/**/
</style>
<!--Hall of Fame CSS-->
<style type="text/css">
/*\*/
@import url(/site/css/hof.css);
/**/
</style>
<style type="text/css">
/*\*/

View File

@ -35,8 +35,7 @@ title: A free & open-source remake of 2009 era RuneScape
<a href="https://gitlab.com/2009scape/2009scape/-/issues"><img
src="./site/2009scape-resources/img/icons/feature-bugreport.jpg" alt="Report a Bug" /></a>
<div class="featureTitle">Report a Bug</div>
<div class="featureDesc">Found a bug in game? Let us know through the <a
hre="https://gitlab.com/2009scape/2009scape/-/issues"></a> Report Form</a>.</div>
<div class="featureDesc">Found a bug in game? Let us know <a href="https://gitlab.com/2009scape/2009scape/-/issues" target="_blank">here</a>.</div>
</div>
<div class="feature">
<a href="./site/classicapplet/playclassic.html"><img

1
serve.bat Normal file
View File

@ -0,0 +1 @@
jekyll serve

2
serve.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
jekyll serve

7
services/m=data/LICENSE Normal file
View 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.

View File

@ -0,0 +1,2 @@
# 2009-Droptables
https://downthecrop.github.io/2009-droptables

6
services/m=data/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View 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";
}

View 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 866 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 646 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 859 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 716 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 921 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 868 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 861 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 823 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 881 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 991 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 855 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1007 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 838 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 995 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 815 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 832 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 788 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 531 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 902 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 775 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1013 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 922 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 711 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 852 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 800 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 568 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 797 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 806 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 852 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 972 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 854 B

Some files were not shown because too many files have changed in this diff Show More