mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Update soccer.py
This commit is contained in:
parent
248ab4360c
commit
605020ab93
1 changed files with 15 additions and 13 deletions
|
|
@ -1,11 +1,18 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
# BY Stary_Agent
|
||||
"""Hockey game and support classes."""
|
||||
plugman = dict(
|
||||
plugin_name="soccer",
|
||||
description="Shoot the ball in left or right edge of the map to score",
|
||||
external_url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
||||
authors=[{"name": "mr.sample", "email": "sample@sample.com", "discord": "sample"}],
|
||||
version="2.1.0"
|
||||
)
|
||||
|
||||
# ba_meta require api 8
|
||||
# (see https://ballistica.net/wiki/meta-tag-system)
|
||||
from __future__ import annotations
|
||||
plugman = dict(
|
||||
|
||||
from bascenev1lib.gameutils import SharedObjects
|
||||
from bascenev1lib.actor.powerupbox import PowerupBoxFactory
|
||||
from bascenev1lib.actor.scoreboard import Scoreboard
|
||||
|
|
@ -14,12 +21,7 @@ plugman = dict(
|
|||
import bauiv1 as bui
|
||||
import babase
|
||||
from typing import TYPE_CHECKING
|
||||
plugin_name="soccer",
|
||||
description="Shoot the ball in left or right edge of the map to score",
|
||||
external_url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
||||
authors=[{"name": "mr.sample", "email": "sample@sample.com", "discord": "sample"}],
|
||||
version="2.1.0",
|
||||
)
|
||||
|
||||
|
||||
|
||||
if TYPE_CHECKING:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue