pf-docs

Path Finder data translated to Spanish

Лицензия

Лицензия

Группа

Группа

io.github.yogonza524
Идентификатор

Идентификатор

pf-docs
Последняя версия

Последняя версия

0.0.4
Дата

Дата

Тип

Тип

jar
Описание

Описание

pf-docs
Path Finder data translated to Spanish
Ссылка на сайт

Ссылка на сайт

https://github.com/yogonza524/pf-docs
Система контроля версий

Система контроля версий

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

Скачать pf-docs

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (7)

Идентификатор библиотеки Тип Версия
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)

Идентификатор библиотеки Тип Версия
com.google.guava : guava jar 29.0-jre

test (1)

Идентификатор библиотеки Тип Версия
org.junit.jupiter : junit-jupiter-api jar 5.6.2

Модули Проекта

Данный проект не имеет модулей.

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); 

Версии библиотеки

Версия
0.0.4
0.0.3
0.0.2
0.0.1