Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
JustOneSummer committed Jul 26, 2023
0 parents commit 7a19a97
Show file tree
Hide file tree
Showing 51 changed files with 2,760 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
mqtt.json
/cache
/logs
/.idea

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
134 changes: 134 additions & 0 deletions config/Damage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
{
"AirCarrier": [
{
"code": 1,
"value": 60000,
"color": "#FE7903"
},
{
"code": 2,
"value": 71000,
"color": "#FE7903"
},
{
"code": 3,
"value": 84000,
"color": "#02C9B3"
},
{
"code": 4,
"value": 113000,
"color": "#A00DC5"
}
],
"Battleship": [
{
"code": 1,
"value": 64000,
"color": "#FE7903"
},
{
"code": 2,
"value": 72000,
"color": "#44B300"
},
{
"code": 3,
"value": 97000,
"color": "#02C9B3"
},
{
"code": 4,
"value": 108000,
"color": "#A00DC5"
}
],
"Destroyer": [
{
"code": 1,
"value": 33000,
"color": "#FE7903"
},
{
"code": 2,
"value": 40000,
"color": "#44B300"
},
{
"code": 3,
"value": 55000,
"color": "#02C9B3"
},
{
"code": 4,
"value": 64000,
"color": "#A00DC5"
}
],
"Cruiser": [
{
"code": 1,
"value": 47000,
"color": "#FE7903"
},
{
"code": 2,
"value": 55000,
"color": "#44B300"
},
{
"code": 3,
"value": 83000,
"color": "#02C9B3"
},
{
"code": 4,
"value": 95000,
"color": "#A00DC5"
}
],
"Submarine": [
{
"code": 1,
"value": 70000,
"color": "#FE7903"
},
{
"code": 2,
"value": 70000,
"color": "#44B300"
},
{
"code": 3,
"value": 70000,
"color": "#02C9B3"
},
{
"code": 4,
"value": 70000,
"color": "#A00DC5"
}
],
"Auxiliary": [
{
"code": 1,
"value": 60000,
"color": "#FE7903"
},
{
"code": 2,
"value": 71000,
"color": "#FE7903"
},
{
"code": 3,
"value": 84000,
"color": "#02C9B3"
},
{
"code": 4,
"value": 113000,
"color": "#A00DC5"
}
]
}
54 changes: 54 additions & 0 deletions config/Nation.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[
{
"nation": "Commonwealth",
"cn": "英联邦"
},
{
"nation": "Europe",
"cn": "欧洲"
},
{
"nation": "France",
"cn": "法国"
},
{
"nation": "Germany",
"cn": "德国"
},
{
"nation": "Italy",
"cn": "意大利"
},
{
"nation": "Japan",
"cn": "日本"
},
{
"nation": "Pan_America",
"cn": "泛美"
},
{
"nation": "Pan_Asia",
"cn": "泛亚"
},
{
"nation": "United_Kingdom",
"cn": "英国"
},
{
"nation": "USA",
"cn": "美国"
},
{
"nation": "Russia",
"cn": "苏联"
},
{
"nation": "Netherlands",
"cn": "荷兰"
},
{
"nation": "Spain",
"cn": "西班牙"
}
]
65 changes: 65 additions & 0 deletions config/Pr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
[
{
"code": 0,
"value": 0,
"name": "暂无数据",
"englishName": "No Rating",
"color": "#828282"
},
{
"code": 1,
"value": 750,
"name": "还需努力",
"englishName": "Bad",
"color": "#FE0E00"
},
{
"code": 2,
"value": 1100,
"name": "低于平均",
"englishName": "Below Average",
"color": "#FE7903"
},
{
"code": 3,
"value": 1350,
"name": "平均水平",
"englishName": "Average",
"color": "#FFC71F"
},
{
"code": 4,
"value": 1550,
"name": "",
"englishName": "Good",
"color": "#44B300"
},
{
"code": 5,
"value": 1750,
"name": "很好",
"englishName": "Very Good",
"color": "#318000"
},
{
"code": 6,
"value": 2100,
"name": "非常好",
"englishName": "Great",
"color": "#02C9B3"
},
{
"code": 7,
"value": 2450,
"name": "大佬水平",
"englishName": "Unicum",
"color": "#D042F3"
},
{
"code": 8,
"value": 2450,
"name": "神佬水平",
"englishName": "Super Unicum",
"color": "#A00DC5"
}
]
26 changes: 26 additions & 0 deletions config/ShipType.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"shipType": "AirCarrier",
"typeName": "航空母舰"
},
{
"shipType": "Battleship",
"typeName": "战列舰"
},
{
"shipType": "Destroyer",
"typeName": "驱逐舰"
},
{
"shipType": "Cruiser",
"typeName": "巡洋舰"
},
{
"shipType": "Submarine",
"typeName": "潜艇"
},
{
"shipType": "Auxiliary",
"typeName": "辅助航母"
}
]
32 changes: 32 additions & 0 deletions config/Wins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"code": 1,
"value": 40,
"color": "#f44336"
},
{
"code": 2,
"value": 45,
"color": "#ff9800"
},
{
"code": 3,
"value": 50,
"color": "#8bc34a"
},
{
"code": 4,
"value": 55,
"color": "#00bcd4"
},
{
"code": 5,
"value": 60,
"color": "#9c27b0"
},
{
"code": 6,
"value": 65,
"color": "#673ab7"
}
]
3 changes: 3 additions & 0 deletions config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"wsPort": 6677
}
31 changes: 31 additions & 0 deletions config/proxy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"host": "127.0.0.1",
"port": 7890,
"server": [
{
"enableProxy": false,
"server": "asia",
"type": "api"
},
{
"enableProxy": false,
"server": "eu",
"type": "api"
},
{
"enableProxy": false,
"server": "ru",
"type": "vortex"
},
{
"enableProxy": false,
"server": "na",
"type": "api"
},
{
"enableProxy": false,
"server": "cn",
"type": "vortex"
}
]
}
Loading

0 comments on commit 7a19a97

Please sign in to comment.