mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-01-29 08:01:12 +00:00
[AB-197] moving templates from utility to their respective maven modules
This commit is contained in:
37
translations/entertainment/pom.xml
Normal file
37
translations/entertainment/pom.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?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>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
<artifactId>entertainment</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>entertainment-translations-${project.version}</finalName>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/assembly.xml</descriptor>
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
15
translations/entertainment/src/main/assembly/assembly.xml
Normal file
15
translations/entertainment/src/main/assembly/assembly.xml
Normal file
@@ -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 @@
|
||||
Ask again later
|
||||
@@ -0,0 +1 @@
|
||||
Cannot predict now
|
||||
@@ -0,0 +1 @@
|
||||
Concentrate and ask again
|
||||
@@ -0,0 +1 @@
|
||||
Yes – definitely
|
||||
@@ -0,0 +1 @@
|
||||
Don't count on it
|
||||
@@ -0,0 +1 @@
|
||||
Very doubtful
|
||||
@@ -0,0 +1 @@
|
||||
Reply hazy, try again
|
||||
@@ -0,0 +1 @@
|
||||
It is certain
|
||||
@@ -0,0 +1 @@
|
||||
It is decidedly so
|
||||
@@ -0,0 +1 @@
|
||||
You may rely on it
|
||||
@@ -0,0 +1 @@
|
||||
Most likely
|
||||
@@ -0,0 +1 @@
|
||||
Better not tell you now
|
||||
@@ -0,0 +1 @@
|
||||
Outlook not so good
|
||||
@@ -0,0 +1 @@
|
||||
Outlook good
|
||||
@@ -0,0 +1 @@
|
||||
Signs point to yes
|
||||
@@ -0,0 +1 @@
|
||||
My reply is no
|
||||
@@ -0,0 +1 @@
|
||||
As I see it, yes
|
||||
@@ -0,0 +1 @@
|
||||
My sources say no
|
||||
@@ -0,0 +1 @@
|
||||
Without a doubt
|
||||
@@ -0,0 +1 @@
|
||||
Yes
|
||||
@@ -0,0 +1 @@
|
||||
Plays a game of magic 8-ball
|
||||
@@ -0,0 +1,2 @@
|
||||
This command can be used to receive a randomly chosen answer from a fixed set of positive, neutral or negative answers.
|
||||
The answers are formulated in a way to answer a yes/no question.
|
||||
@@ -0,0 +1 @@
|
||||
The question to ask the magic 8-ball
|
||||
@@ -0,0 +1 @@
|
||||
I have chosen: ${choice}.
|
||||
@@ -0,0 +1 @@
|
||||
Chooses one of the given inputs
|
||||
@@ -0,0 +1,4 @@
|
||||
This command can be used to select a choice from a provided list of choices.
|
||||
The choices need to be space separated and there can be an arbitrary amount of them.
|
||||
If a choice needs to have spaces in it, the complete choice needs to be wrapped in ". For example "this choice" is considered one object to be chosen.
|
||||
The wrapping " will not be part of the final output. Only one choice will be chosen, and a sole choice as input is also possible.
|
||||
@@ -0,0 +1 @@
|
||||
A space separated list of choices
|
||||
@@ -0,0 +1 @@
|
||||
Calculates the love percentage between two subjects
|
||||
@@ -0,0 +1,2 @@
|
||||
This commands takes to subjects int he form of text inputs (can be mentions as well) and calculates the love percentage between those.
|
||||
The percentage is only whole numbers.
|
||||
@@ -0,0 +1 @@
|
||||
The first subject in the love calculation
|
||||
@@ -0,0 +1 @@
|
||||
The second subject in the love calculation
|
||||
@@ -0,0 +1 @@
|
||||
:cupid: Love Chance between ${first} and ${second} is ${chance}%.
|
||||
@@ -0,0 +1 @@
|
||||
Rolls a virtual die
|
||||
@@ -0,0 +1 @@
|
||||
This command can be used to roll a virtual die providing a number as output. Per default this die is 6-sided, but parameters for the side count and the minimal possible value can be provided.
|
||||
@@ -0,0 +1 @@
|
||||
The max value of the die. Default: 6
|
||||
@@ -0,0 +1 @@
|
||||
The minimum value the die can have. Default: 1
|
||||
@@ -0,0 +1 @@
|
||||
Plays one round of solo russian roulette
|
||||
@@ -0,0 +1 @@
|
||||
This command simulates one round of russian roulette. When executed this command uses a random chance to determine if a shot is made.
|
||||
@@ -0,0 +1 @@
|
||||
:gun: :boom:, you died! :skull:
|
||||
@@ -0,0 +1 @@
|
||||
:gun: *click*, no bullet in there for you this round.
|
||||
@@ -0,0 +1 @@
|
||||
Entertainment
|
||||
@@ -0,0 +1 @@
|
||||
The amount of sides the die has. Default: ${defaultValue}
|
||||
@@ -0,0 +1 @@
|
||||
The amount of bullets the revolver holds. Default: ${defaultValue}
|
||||
@@ -0,0 +1 @@
|
||||
Entertainment commands
|
||||
Reference in New Issue
Block a user