├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── misc.xml └── modules │ └── unsafe-wilhelm-scream.test.iml ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── readme └── demo.mp4 ├── settings.gradle └── src └── main ├── kotlin └── com │ └── github │ └── theapache64 │ └── primescreams │ ├── PrimeScream.kt │ └── model │ └── Rules.kt └── resources ├── META-INF └── plugin.xml ├── rules.json └── sounds └── prime_screams.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules/unsafe-wilhelm-scream.test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/.idea/modules/unsafe-wilhelm-scream.test.iml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/gradlew.bat -------------------------------------------------------------------------------- /readme/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/readme/demo.mp4 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'prime-screams' 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/com/github/theapache64/primescreams/PrimeScream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/src/main/kotlin/com/github/theapache64/primescreams/PrimeScream.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/github/theapache64/primescreams/model/Rules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/src/main/kotlin/com/github/theapache64/primescreams/model/Rules.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/src/main/resources/rules.json -------------------------------------------------------------------------------- /src/main/resources/sounds/prime_screams.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theapache64/prime-screams/HEAD/src/main/resources/sounds/prime_screams.wav --------------------------------------------------------------------------------