mirror of
https://github.com/Sheldan/OnePlusBot.git
synced 2026-03-19 21:31:11 +00:00
[OPB-41] adding seasonal lights effect
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
<module>news-translations</module>
|
||||
<module>referral-translations</module>
|
||||
<module>setup-translations</module>
|
||||
<module>seasonal-translations</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>dev.sheldan.oneplus.bot.templates.translations.modules</groupId>
|
||||
<artifactId>module-translations</artifactId>
|
||||
<version>1.5.9-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>seasonal-translations</artifactId>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<finalName>seasonal-translations-${project.version}</finalName>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/assembly.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,15 @@
|
||||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
||||
<id>zip</id>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<formats>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<outputDirectory>.</outputDirectory>
|
||||
<directory>${project.basedir}/src/main/resources</directory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
||||
@@ -0,0 +1 @@
|
||||
Adds a role to the lights mechanism
|
||||
@@ -0,0 +1 @@
|
||||
Adds this role to the mechanism which switches the colors of the defined roles to a random color, when `switchLights` is executed.
|
||||
@@ -0,0 +1 @@
|
||||
The role to add to the lights mechanism
|
||||
@@ -0,0 +1 @@
|
||||
Removes a role from the lights mechanism
|
||||
@@ -0,0 +1 @@
|
||||
Removes this role from the mechanism which switches the colors of the defined roles to a random color, when `switchLights` is executed.
|
||||
@@ -0,0 +1 @@
|
||||
The role to remove
|
||||
@@ -0,0 +1 @@
|
||||
Switches the configured roles to a random color
|
||||
@@ -0,0 +1 @@
|
||||
This command switches the configured roles to a completely random color.
|
||||
@@ -0,0 +1 @@
|
||||
Lights
|
||||
Reference in New Issue
Block a user