Skip to content

Commit

Permalink
Ready for Public.
Browse files Browse the repository at this point in the history
  • Loading branch information
EATSTEAK committed Feb 5, 2020
0 parents commit c3906ca
Show file tree
Hide file tree
Showing 84 changed files with 27,897 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"@nuxtjs"
]
}
96 changes: 96 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
/logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# Nuxt generate
dist

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless

# IDE / Editor
.idea

# Service worker
sw.*

# Mac OSX
.DS_Store

# Vim swap files
*.swp

#PWA
sw.*

#VS Code
.vscode
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# arcinfo

> Advanced Arc Statics
# Info
This is source code of arcinfo.
Database for Missions are not included.

## Build Setup

``` bash
# install dependencies
$ npm run install

# serve with hot reload at localhost:8080
$ npm run dev

# build for production and launch server
$ npm run build
$ npm run start

# generate static project
$ npm run generate
```

For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).
Binary file added assets/GeosansLight-Oblique.woff
Binary file not shown.
Binary file added assets/GeosansLight.woff
Binary file not shown.
7 changes: 7 additions & 0 deletions assets/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ASSETS

**This directory is not required, you can delete it if you don't want to use it.**

This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.

More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).
Binary file added assets/background_darkened.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions assets/custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
$theme-colors: (
"arcpink": rgb(244, 143, 177),
"transparent": rgba(0, 0, 0, 0),
"arcpink50": rgba(244, 143, 177, 0.5),
'purple': #9c27b0
);

@import '~bootstrap/scss/bootstrap.scss';
@import '~bootstrap-vue/src/index.scss';



219 changes: 219 additions & 0 deletions assets/data/packlist.json

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions assets/data/partners_working.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Character Type
* BALANCE: 0, SUPPORT: 1, CHALLENGE: 2, ???: 3
*/
{
"characters": [
{
"character_id": 0,
"name": "hikari",
"name_localized": {
"en": "Hikari",
"ko": "히카리"
},
"illustrator": "シエラ",
"char_type": 1,
"skill_id": "gauge_easy",
"skill_description_localized": {
"en": "EASY - Recollection Rate loss reduced for 'LOST' notes",
"ko": "EASY - 'LOST' 노트에 대한 기억 회상률 감소량이 줄어듭니다"
},
"skill_requires_uncap": false,
"skill_unlock_level": 0,
"stats": [
{ "frag": 55, "step": 35 }
],
"is_uncapable": true
}
]
}
Loading

0 comments on commit c3906ca

Please sign in to comment.