Skip to content

Commit

Permalink
docs: add more info to tag event
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgazelka committed Nov 25, 2024
1 parent e905b2a commit 73c7e7f
Show file tree
Hide file tree
Showing 6 changed files with 96 additions and 3 deletions.
35 changes: 34 additions & 1 deletion docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,37 @@
:root {
--vp-font-family-mono: 'Fira Code', monospace;
--vp-code-line-height: 1.35;
}
}

.medium-zoom-overlay {
z-index: 999;
}

.medium-zoom-image {
z-index: 1000;
}

.vp-doc ul {
list-style: disc;
}

.vp-doc ul ul {
list-style: circle;
}

.vp-doc ul ul ul {
list-style: square;
}

.vp-doc ul ul ul ul {
list-style: square;
/* Create open square effect by adding a border and transparent background */
list-style: none;
}

.vp-doc ul ul ul ul li::before {
content: "□";
display: inline-block;
width: 1em;
margin-left: -1em;
}
11 changes: 10 additions & 1 deletion docs/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,20 @@ import './custom.css'
// import {NolebaseInlineLinkPreviewPlugin} from '@nolebase/vitepress-plugin-inline-link-preview/client';
import '@fontsource/fira-code'

import { onMounted } from 'vue';

// export default DefaultTheme

import mediumZoom from 'medium-zoom';

export default {
...DefaultTheme,
enhanceApp({app}) {
app.component('GithubSnippet', GithubSnippet)
}
},
setup() {
onMounted(() => {
mediumZoom('[data-zoomable]', { background: 'var(--vp-c-bg)' });
});
},
};
Binary file added docs/tag/classes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 43 additions & 1 deletion docs/tag/introduction.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
# 10,000 Player PvP Event

TODO
Our pilot event is a 10,000 player PvP battle to break the Guinness World Record for the largest PvP battle ever.

We're partnering with [TheMisterEpic](https://www.youtube.com/channel/UCJiFgnnYpwlnadzTzhMnX_Q) to run an initial
proof-of-concept event with around 2k players. Following its success, we'll host the full-scale 10,000 player PvP battle
alongside numerous YouTubers and streamers.

## Inspiration

- [Diep.io Tag](https://diepio.fandom.com/wiki/Tag)
- Hypixel *The Pit*

## Teams

When players join the game, they are assigned to a team.

- Red team
- Blue team
- Green team
- Yellow team

Teams are designated by their boot color.

Their goal is to gather resources and kill all other players on opposing teams to increase their XP points.

When a player is killed

- the killed player respawns with $1/3$ of their XP points
- the killer receives $1/2$ of the XP points
- this is to make sure that killing players is not inflationary; $1/3 + 1/2 < 1$.

## Classes

![classes.png](classes.png){data-zoomable}

There is an upgrade tree. Everyone starts out as the stick class, which is the most basic class.








8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"@nolebase/vitepress-plugin-inline-link-preview": "^2.10.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-mathjax3": "^4.3.2",
"medium-zoom": "^1.1.0",
"mermaid": "^11.4.0",
"vitepress": "^1.5.0",
"vitepress-plugin-mermaid": "^2.0.17"
Expand Down

0 comments on commit 73c7e7f

Please sign in to comment.