mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-15 13:03:08 +00:00
[ci] apply-plugin-metadata-and-formatting
This commit is contained in:
parent
abe91c4b0e
commit
0d39f577f2
2 changed files with 187 additions and 169 deletions
|
|
@ -2407,6 +2407,20 @@
|
|||
"md5sum": "5082acb27f3dbe701d8bd42d8948b352"
|
||||
}
|
||||
}
|
||||
},
|
||||
"players_list": {
|
||||
"description": "A plugin that shows you live players list",
|
||||
"external_url": "https://m.youtube.com/drap_bs",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Drap",
|
||||
"email": "mrunittest@gmail.com",
|
||||
"discord": "drap_bs"
|
||||
}
|
||||
],
|
||||
"versions": {
|
||||
"1.7.0": null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -42,9 +42,11 @@ class ColorPickerWindow:
|
|||
# Preset colors grid (4 rows × 8 columns = 32 colors)
|
||||
PRESET_COLORS = [
|
||||
# Row 1 - Reds to Greens
|
||||
[(1.2, 0.0, 0.0), (0.65, 0.0, 0.0), (1.2, 0.8, 0.0), (0.89, 0.59, 0.0), (0.67, 1.0, 0.0), (0.52, 0.78, 0.0), (0.0, 1.2, 0.0), (0.0, 0.78, 0.0)],
|
||||
[(1.2, 0.0, 0.0), (0.65, 0.0, 0.0), (1.2, 0.8, 0.0), (0.89, 0.59, 0.0),
|
||||
(0.67, 1.0, 0.0), (0.52, 0.78, 0.0), (0.0, 1.2, 0.0), (0.0, 0.78, 0.0)],
|
||||
# Row 2 - Cyans to Purples
|
||||
[(0.0, 1.2, 0.8), (0.0, 0.78, 0.52), (0.0, 0.8, 1.2), (0.0, 0.52, 0.78), (0.0, 0.0, 1.2), (0.0, 0.0, 0.78), (0.8, 0.0, 1.2), (0.52, 0.0, 0.78)],
|
||||
[(0.0, 1.2, 0.8), (0.0, 0.78, 0.52), (0.0, 0.8, 1.2), (0.0, 0.52, 0.78),
|
||||
(0.0, 0.0, 1.2), (0.0, 0.0, 0.78), (0.8, 0.0, 1.2), (0.52, 0.0, 0.78)],
|
||||
# Row 3 - Browns/Tans
|
||||
[(1.0, 0.82, 0.48), (0.8, 0.62, 0.28), (0.8, 0.8, 0.0), (0.55, 0.55, 0.0)],
|
||||
]
|
||||
|
|
@ -1214,6 +1216,8 @@ class PlayersDisplay:
|
|||
|
||||
# My First Cool Mod ,WooHoo.
|
||||
# ba_meta export babase.Plugin
|
||||
|
||||
|
||||
class CoolList(babase.Plugin):
|
||||
"""Main plugin class"""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue