[ci] apply-plugin-metadata-and-formatting

This commit is contained in:
MrParadox1691 2026-06-10 07:05:08 +00:00 committed by github-actions[bot]
parent e091fb6983
commit edaed70235
2 changed files with 42 additions and 24 deletions

View file

@ -1688,6 +1688,25 @@
"md5sum": "be998b599896ed0e8dd5f2545fae6173"
}
}
},
"vanishing_tiles": {
"description": "Tiles disappear gradually. Survive each round to continue. Last player standing wins!",
"external_url": "https://discord.gg/sQGDsztQcy",
"authors": [
{
"name": "Mr.Paradox",
"email": "microsoftusergame@gmail.com",
"discord": "gaurangbroyo"
},
{
"name": "senchx",
"email": "",
"discord": "senchx0"
}
],
"versions": {
"1.0.2": null
}
}
}
}

View file

@ -1,5 +1,10 @@
# ba_meta require api 9
from __future__ import annotations
from bascenev1lib.gameutils import SharedObjects
import bascenev1 as bs
import babase
import random
from typing import Optional, List, Dict, Any
# Vanishing Tiles - BombSquad Minigame
# Tiles disappear one by one. Survive all rounds to win.
@ -16,12 +21,6 @@ plugman = dict(
version="1.0.2",
)
from typing import Optional, List, Dict, Any
import random
import babase
import bascenev1 as bs
from bascenev1lib.gameutils import SharedObjects
class Player(bs.Player['Team']):
def __init__(self) -> None: