Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: ⏱️Test
description: Test app

runs:
using: "composite"
steps:
- name: Test
shell: bash
run: |
python -m tests.asserts.validate
61 changes: 61 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# workflow name
name: "Sanity Checks"

# fire on
on: [push, pull_request]

#########
# actions
#########
# actions/checkout@v6.0.1
# actions/setup-python@v6.1.0
# actions/upload-artifact@v4.4.0
# vg-json-data/sm-json-data/test

jobs:
# Test
test:
name: 🧮
runs-on: ${{ matrix.os-name }}

strategy:
matrix:
os-name: [
ubuntu-latest
]
python-version: [
"3.10"
]

steps:
# checkout commit
- name: ✔️Checkout commit
uses: actions/checkout@v6.0.1
# install python
- name: 💿Install Python
uses: actions/setup-python@v6.1.0
with:
python-version: ${{ matrix.python-version }}
# python version
- name: 🐍Python Version
shell: bash
run: |
python --version
# python modules
- name: 🐍Python Modules
shell: bash
run: |
python -m pip install -r "./resources/app/manifests/pip_requirements.txt"
# Analyze used GitHub Actions
- name: Analyze used GitHub Actions
shell: bash
run: |
python ./resources/ci/common/list_actions.py
# test
- name: ⏱️Call Test
uses: ./.github/actions/test
# autoformat
- name: Autoformat
working-directory: scripts
run: |
python autoformat.py
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__pycache__
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# mmm-data
Mothula’s Multiworld Mayhem
[Mothula’s Multiworld Mayhem](http://mothula.neocities.org/MMM)
168 changes: 127 additions & 41 deletions dbs/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,51 @@
"players": {
"7n7": {
"game": "A Link to the Past",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Fechdog": {
"game": "A Link to the Past",
"eligible": [ "silver" ]
"eligible": [
"silver"
]
},
"Flareon": {
"game": "Pokemon Mystery Dungeon: Explorers of Sky",
"eligible": [ "bronze" ]
"game": "Pok\u00e9mon Mystery Dungeon: Explorers of Sky",
"eligible": [
"bronze"
]
},
"Kyle": {
"game": "Ocarina of Time",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Mothula": {
"game": "A Link to the Past",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Murder": {
"game": "Lingo 2",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Royal": {
"game": "Super Mario 64",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Void": {
"game": "A Link to the Past",
"eligible": [ "silver" ]
"eligible": [
"silver"
]
}
}
},
Expand All @@ -41,35 +57,55 @@
"players": {
"7n7": {
"game": "A Link to the Past",
"eligible": [ "platinum", "onyx" ]
"eligible": [
"platinum",
"onyx"
]
},
"Fechdog": {
"game": "A Link to the Past",
"eligible": [ "platinum", "sapphire" ]
"eligible": [
"platinum",
"sapphire"
]
},
"Flareon": {
"game": "Pokemon Mystery Dungeon: Explorers of Sky",
"eligible": [ "platinum", "ruby" ]
"game": "Pok\u00e9mon Mystery Dungeon: Explorers of Sky",
"eligible": [
"platinum",
"ruby"
]
},
"Kyle": {
"game": "Ocarina of Time",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Mothula": {
"game": "A Link to the Past",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"Murder": {
"game": "Lingo 2",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"Royal": {
"game": "Super Mario 64",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"Void": {
"game": "A Link to the Past",
"eligible": [ "platinum", "emerald" ]
"eligible": [
"platinum",
"emerald"
]
}
}
},
Expand All @@ -78,47 +114,74 @@
"players": {
"7n7": {
"game": "The Wind Waker",
"eligible": [ "platinum", "onyx", "emerald" ]
"eligible": [
"platinum",
"onyx",
"emerald"
]
},
"ArtsyLG": {
"game": "Kirby's Dream Land 3",
"eligible": [ "onyx" ]
"eligible": [
"onyx"
]
},
"Fechdog": {
"game": "Ocarina of Time",
"eligible": [ "platinum", "diamond", "ruby" ]
"eligible": [
"platinum",
"diamond",
"ruby"
]
},
"Flareon": {
"game": "Pokemon Red and Blue",
"eligible": [ "platinum" ]
"game": "Pok\u00e9mon Red and Blue",
"eligible": [
"platinum"
]
},
"Kyle": {
"game": "Ocarina of Time",
"eligible": [ "gold" ]
"eligible": [
"gold"
]
},
"Maskeroshi": {
"game": "Ocarina of Time",
"eligible": [ "silver" ]
"eligible": [
"silver"
]
},
"Mothula": {
"game": "Donkey Kong Country",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"Murder": {
"game": "Lingo",
"eligible": [ "platinum", "sapphire" ]
"eligible": [
"platinum",
"sapphire"
]
},
"Royal": {
"game": "Super Mario World",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"SuperSquad33": {
"game": "Super Metroid",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"Void": {
"game": "Celeste",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
}
}
},
Expand All @@ -127,43 +190,66 @@
"players": {
"7n7": {
"game": "Super Mario World",
"eligible": [ "orichalcum", "ruby" ]
"eligible": [
"orichalcum",
"ruby"
]
},
"Fechdog": {
"game": "MegaMan Battle Network 3",
"eligible": [ "orichalcum" ]
"eligible": [
"orichalcum"
]
},
"Flareon": {
"game": "Pokemon Crystal",
"eligible": [ "platinum", "sapphire" ]
"game": "Pok\u00e9mon Crystal",
"eligible": [
"platinum",
"sapphire"
]
},
"Kyle": {
"game": "Super Mario 64",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"Maskeroshi": {
"game": "Ocarina of Time",
"eligible": [ "bronze" ]
"eligible": [
"bronze"
]
},
"Mothula": {
"game": "Donkey Kong Country",
"eligible": [ "orichalcum" ]
"eligible": [
"orichalcum"
]
},
"Murder": {
"game": "Secret of Evermore",
"eligible": [ "orichalcum" ]
"eligible": [
"orichalcum"
]
},
"Royal": {
"game": "Super Mario World",
"eligible": [ "platinum" ]
"eligible": [
"platinum"
]
},
"SuperSquad33": {
"game": "Super Metroid",
"eligible": [ "orichalcum" ]
"eligible": [
"orichalcum"
]
},
"Void": {
"game": "Mario & Luigi Superstar Saga",
"eligible": [ "orichalcum", "emerald" ]
"eligible": [
"orichalcum",
"emerald"
]
}
}
},
Expand Down
Loading