pf-docs

Path Finder data translated to Spanish

License

License

GroupId

GroupId

io.github.yogonza524
ArtifactId

ArtifactId

pf-docs
Last Version

Last Version

0.0.4
Release Date

Release Date

Type

Type

jar
Description

Description

pf-docs
Path Finder data translated to Spanish
Project URL

Project URL

https://github.com/yogonza524/pf-docs
Source Code Management

Source Code Management

https://github.com/yogonza524/pf-docs/tree/master/

Download pf-docs

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.yogonza524/pf-docs/ -->
<dependency>
    <groupId>io.github.yogonza524</groupId>
    <artifactId>pf-docs</artifactId>
    <version>0.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.yogonza524/pf-docs/
implementation 'io.github.yogonza524:pf-docs:0.0.4'
// https://jarcasting.com/artifacts/io.github.yogonza524/pf-docs/
implementation ("io.github.yogonza524:pf-docs:0.0.4")
'io.github.yogonza524:pf-docs:jar:0.0.4'
<dependency org="io.github.yogonza524" name="pf-docs" rev="0.0.4">
  <artifact name="pf-docs" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.yogonza524', module='pf-docs', version='0.0.4')
)
libraryDependencies += "io.github.yogonza524" % "pf-docs" % "0.0.4"
[io.github.yogonza524/pf-docs "0.0.4"]

Dependencies

compile (7)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.30
org.slf4j : slf4j-log4j12 jar 1.7.30
org.slf4j : slf4j-simple jar 1.7.30
ch.qos.logback : logback-classic jar 1.2.3
io.github.resilience4j : resilience4j-retry jar 1.6.1
org.jsoup : jsoup jar 1.11.1
org.apache.commons : commons-lang3 jar 3.11

runtime (1)

Group / Artifact Type Version
com.google.guava : guava jar 29.0-jre

test (1)

Group / Artifact Type Version
org.junit.jupiter : junit-jupiter-api jar 5.6.2

Project Modules

There are no modules declared in this project.

Maven Artifact Code size

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

  1. List categories
PathFinder.categories().stream().forEach(System.out::println);
  1. Find all classes of characters
// Show all classes
PathFinder.clasesPF().stream().forEach(System.out::println);
  1. List the glosary of terms
PathFinder.glosary().stream().forEach(System.out::println);
  1. Show all races of the game
PathFinder.razasPF().stream().forEach(System.out::println);
  1. 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);
  1. Show Matrix of classes
PathFinder.clasesMatriz(); // Get the Matrix classes 
  1. Classes of prestige
PathFinder.clasesPFF().stream().forEach(System.out::println); 
  1. Get a class of prestige
PathFinder.clasesPFF().get(0).card(true).forEach(System.out::println); 
  1. Arquetipo info
PathFinder.arquetipoInfo().forEach(System.out::println); 

Versions

Version
0.0.4
0.0.3
0.0.2
0.0.1