Path Finder Game Docs SDK (Spanish)
Simple API for Path Finder game
Disclaimer
This development use third party translation. Use it under your own risk. We don't take any responsability for your usage
Requirements
- JDK 8+
Add to your project
To add as dependency using Maven, you should have at pom.xml
:
<dependency>
<groupId>io.github.yogonza524</groupId>
<artifactId>pf-docs</artifactId>
<version>0.0.4</version>
</dependency>
To add as dependency using Gradle, you should have at build.gradle
:
repositories {
mavenCentral()
}
dependencies {
implementation "io.github.yogonza524:pf-docs:0.0.4"
}
Usage
- List categories
PathFinder.categories().stream().forEach(System.out::println);
- Find all classes of characters
// Show all classes
PathFinder.clasesPF().stream().forEach(System.out::println);
- List the glosary of terms
PathFinder.glosary().stream().forEach(System.out::println);
- Show all races of the game
PathFinder.razasPF().stream().forEach(System.out::println);
- Show card description of a race
PathFinder.razasPF()
.get(0) // Take first
.card(true) // true = text plain; false = raw html
.stream()
.forEach(System.out::println);
- Show Matrix of classes
PathFinder.clasesMatriz(); // Get the Matrix classes
- Classes of prestige
PathFinder.clasesPFF().stream().forEach(System.out::println);
- Get a class of prestige
PathFinder.clasesPFF().get(0).card(true).forEach(System.out::println);
- Arquetipo info
PathFinder.arquetipoInfo().forEach(System.out::println);