feature/move-to-svelte #1
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -9,3 +9,7 @@ pkg
|
||||
!.idea/runConfigurations/
|
||||
!.idea/inspectionProfiles/
|
||||
*.iml
|
||||
|
||||
.cache/
|
||||
compile_commands.json
|
||||
*.db
|
||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
[submodule "modules/cpp-libraries"]
|
||||
path = modules/cpp-libraries
|
||||
url = ssh://git@192.168.1.101:2222/lukas/cpp-libraries.git
|
||||
6
.vscode/launch.json
vendored
6
.vscode/launch.json
vendored
@@ -2,10 +2,10 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug Server Admin Panel",
|
||||
"type": "cppdbg",
|
||||
"name": "Debug Shadowrun Server",
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/lf-server-admin-panel",
|
||||
"program": "${workspaceFolder}/build/shadowrun-server",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
|
||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -99,5 +99,6 @@
|
||||
"typeinfo": "cpp",
|
||||
"valarray": "cpp",
|
||||
"variant": "cpp"
|
||||
}
|
||||
},
|
||||
"C_Cpp.errorSquiggles": "disabled"
|
||||
}
|
||||
17
.vscode/tasks.json
vendored
17
.vscode/tasks.json
vendored
@@ -9,6 +9,23 @@
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "build release",
|
||||
"type": "shell",
|
||||
"command": "cmake -S . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build",
|
||||
"group": "build",
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "build Frontend",
|
||||
"type": "shell",
|
||||
"command": "npm run build",
|
||||
"options": {
|
||||
"cwd": "frontend"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -3,7 +3,7 @@ project(CrowHTMX)
|
||||
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
set(TARGET_NAME lf-server-admin-panel )
|
||||
set(TARGET_NAME shadowrun-server )
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
@@ -20,57 +20,41 @@ if(NOT CMAKE_BUILD_TYPE IN_LIST SUPPORTED_BUILD_TYPES)
|
||||
endif()
|
||||
|
||||
# Copy 'static' and 'templates' directories to build directory
|
||||
file(GLOB_RECURSE STATIC_FILES "${CMAKE_SOURCE_DIR}/static/*")
|
||||
file(GLOB_RECURSE TEMPLATE_FILES "${CMAKE_SOURCE_DIR}/templates/*")
|
||||
file(GLOB_RECURSE ASSETS_FILES "${CMAKE_SOURCE_DIR}/assets/*")
|
||||
file(GLOB_RECURSE FRONTEND_FILES "${CMAKE_SOURCE_DIR}/frontend/build/*")
|
||||
|
||||
foreach(file IN LISTS STATIC_FILES)
|
||||
file(RELATIVE_PATH rel_path "${CMAKE_SOURCE_DIR}" "${file}")
|
||||
configure_file("${file}" "${CMAKE_BINARY_DIR}/${rel_path}" COPYONLY)
|
||||
endforeach()
|
||||
|
||||
foreach(file IN LISTS TEMPLATE_FILES)
|
||||
foreach(file IN LISTS FRONTEND_FILES)
|
||||
file(RELATIVE_PATH rel_path "${CMAKE_SOURCE_DIR}" "${file}")
|
||||
configure_file("${file}" "${CMAKE_BINARY_DIR}/${rel_path}" COPYONLY)
|
||||
endforeach()
|
||||
|
||||
add_compile_options(-Wno-deprecated-declarations)
|
||||
add_compile_options(-Wno-deprecated-literal-operator)
|
||||
|
||||
# Use Crow from system include (installed via yay -S crow + asio)
|
||||
include_directories(/usr/include src src/htmx src/shadowrun src/database src/login)
|
||||
include_directories(
|
||||
modules/cpp-libraries/include/
|
||||
src
|
||||
src/shadowrun
|
||||
src/database
|
||||
src/login
|
||||
)
|
||||
|
||||
add_executable(${TARGET_NAME}
|
||||
modules/cpp-libraries/src/sqlite3.c
|
||||
modules/cpp-libraries/src/monocypher.c
|
||||
|
||||
src/main.cpp
|
||||
src/utils.hpp
|
||||
src/utils.cpp
|
||||
src/htmx/HtmxTable.cpp
|
||||
src/htmx/HtmxTable.h
|
||||
src/systemd.cpp
|
||||
src/systemd.h
|
||||
src/json.hpp
|
||||
src/htmx/HtmxTableRow.cpp
|
||||
src/htmx/HtmxTableRow.h
|
||||
src/htmx/HtmxObject.cpp
|
||||
src/htmx/HtmxObject.h
|
||||
src/htmx_helper.cpp
|
||||
src/htmx_helper.h
|
||||
src/json_settings.cpp
|
||||
src/json_settings.h
|
||||
src/json.hpp
|
||||
|
||||
src/database/database.cpp
|
||||
src/database/database.hpp
|
||||
src/database/sqlite_orm.h
|
||||
|
||||
# Shadowrun
|
||||
src/shadowrun/HtmxShItemList.cpp
|
||||
src/shadowrun/HtmxShItemList.hpp
|
||||
src/shadowrun/HtmxShAttributeList.cpp
|
||||
src/shadowrun/HtmxShAttributeList.hpp
|
||||
src/shadowrun/HtmxShCondition.cpp
|
||||
src/shadowrun/HtmxShCondition.hpp
|
||||
src/shadowrun/ShadowrunCharacterForm.hpp
|
||||
src/shadowrun/ShadowrunCharacterForm.cpp
|
||||
src/shadowrun/ShadowrunApi.cpp
|
||||
src/shadowrun/ShadowrunApi.hpp
|
||||
src/shadowrun/ShadowrunDb.cpp
|
||||
@@ -79,12 +63,36 @@ add_executable(${TARGET_NAME}
|
||||
# login
|
||||
src/login/login.cpp
|
||||
src/login/login.hpp
|
||||
|
||||
src/login/loginDb.cpp
|
||||
src/login/Session.cpp
|
||||
src/login/SessionHandler.cpp
|
||||
)
|
||||
|
||||
target_compile_definitions(${TARGET_NAME} PRIVATE APPLICATION_NAME="${TARGET_NAME}")
|
||||
# warnings to ignore
|
||||
target_compile_options(${TARGET_NAME} PRIVATE
|
||||
$<$<COMPILE_LANGUAGE:CXX>:
|
||||
-Wno-deprecated-literal-operator
|
||||
-Wno-deprecated-declarations
|
||||
>
|
||||
)
|
||||
|
||||
target_link_libraries(${TARGET_NAME} pthread sqlite3 sodium)
|
||||
# relase compiler options
|
||||
target_compile_options(${TARGET_NAME} PRIVATE
|
||||
$<$<CONFIG:Release>:-O3>
|
||||
$<$<CONFIG:Release>:-flto=auto>
|
||||
)
|
||||
|
||||
# relase linker options
|
||||
target_link_options(${TARGET_NAME} PRIVATE
|
||||
$<$<CONFIG:Release>:-flto=auto>
|
||||
)
|
||||
|
||||
target_compile_definitions(${TARGET_NAME} PRIVATE
|
||||
APPLICATION_NAME="${TARGET_NAME}"
|
||||
SQLITE_THREADSAFE=1
|
||||
)
|
||||
|
||||
target_link_libraries(${TARGET_NAME} pthread)
|
||||
|
||||
# Optional: Print build type at configuration time
|
||||
message(STATUS "Configuring build type: ${CMAKE_BUILD_TYPE}")
|
||||
20
README.md
20
README.md
@@ -15,6 +15,19 @@ run : F5 or Run → Start Debugging
|
||||
cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
|
||||
```
|
||||
|
||||
## Svelte
|
||||
Inside the fronend directory
|
||||
|
||||
### Install
|
||||
```
|
||||
npm install -D @sveltejs/adapter-static
|
||||
```
|
||||
|
||||
### Build
|
||||
```
|
||||
npm run build
|
||||
```
|
||||
|
||||
## Make Package
|
||||
1. tar the source files to make it cleaner
|
||||
|
||||
@@ -27,3 +40,10 @@ tar czf pkg/lf-server-admin-panel-0.1.1.tar.gz src/ static/ templates/ lf-server
|
||||
```
|
||||
makepkg -f
|
||||
```
|
||||
|
||||
## Database
|
||||
|
||||
### Attributes
|
||||
| Character Id | Attribute | Value |
|
||||
|
||||
###
|
||||
0
static/htmx.min.js → assets/htmx.min.js
vendored
0
static/htmx.min.js → assets/htmx.min.js
vendored
3
assets/settings.json
Normal file
3
assets/settings.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"httpPort" : 3010
|
||||
}
|
||||
BIN
assets/shadowrun/Shadowrun-4E-Corebook-full.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-full.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p1.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p1.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p10.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p10.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p100.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p100.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p101.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p101.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p102.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p102.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p103.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p103.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p104.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p104.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p105.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p105.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p106.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p106.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p107.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p107.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p108.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p108.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p109.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p109.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p11.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p11.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p110.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p110.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p111.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p111.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p112.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p112.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p113.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p113.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p114.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p114.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p115.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p115.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p116.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p116.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p117.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p117.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p118.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p118.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p119.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p119.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p12.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p12.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p120.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p120.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p121.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p121.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p122.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p122.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p123.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p123.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p124.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p124.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p125.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p125.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p126.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p126.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p127.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p127.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p128.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p128.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p129.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p129.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p13.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p13.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p130.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p130.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p131.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p131.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p132.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p132.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p133.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p133.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p134.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p134.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p135.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p135.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p136.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p136.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p137.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p137.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p138.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p138.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p139.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p139.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p14.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p14.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p140.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p140.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p141.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p141.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p142.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p142.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p143.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p143.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p144.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p144.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p145.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p145.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p146.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p146.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p147.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p147.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p148.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p148.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p149.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p149.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p15.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p15.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p150.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p150.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p151.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p151.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p152.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p152.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p153.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p153.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p154.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p154.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p155.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p155.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p156.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p156.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p157.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p157.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p158.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p158.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p159.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p159.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p16.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p16.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p160.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p160.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p161.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p161.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p162.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p162.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p163.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p163.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p164.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p164.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p165.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p165.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p166.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p166.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p167.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p167.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p168.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p168.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p169.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p169.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p17.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p17.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p170.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p170.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p171.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p171.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p172.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p172.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p173.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p173.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p174.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p174.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p175.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p175.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p176.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p176.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p177.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p177.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p178.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p178.pdf
LFS
Normal file
Binary file not shown.
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p179.pdf
LFS
Normal file
BIN
assets/shadowrun/Shadowrun-4E-Corebook-p179.pdf
LFS
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user