# Currencies

## Tokens

```java
package com.edwardbelt.edprisonapi;

import com.edwardbelt.edprison.utils.economy;


public interface EdPrisonEnchantAPI {

	double getTokens(Player player);
	void addTokens(Player player, double amount);
	void setTokens(Player player, double amount);
	void removeTokens(Player player, double amount);
	
}
```

## Gems

```java
package com.edwardbelt.edprisonapi;

import com.edwardbelt.edprison.utils.economy;


public interface EdPrisonEnchantAPI {

	double getGems(Player player);
	void addGems(Player player, double amount);
	void setGems(Player player, double amount);
	void removeGems(Player player, double amount);
	
}
```

## Crystals

```java
package com.edwardbelt.edprisonapi;

import com.edwardbelt.edprison.utils.economy;


public interface EdPrisonEnchantAPI {

	double getCrystals(Player player);
	void addCrystals(Player player, double amount);
	void setCrystals(Player player, double amount);
	void removeCrystals(Player player, double amount);
	
}
```

## Multiplier

```java
package com.edwardbelt.edprisonapi;

import com.edwardbelt.edprison.utils.economy;


public interface EdPrisonEnchantAPI {

	double getMultiplier(Player player);
	void addMultiplier(Player player, double amount);
	void setMultiplier(Player player, double amount);
	void removeMultiplier(Player player, double amount);
	
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://edwardbelt.gitbook.io/edprison-core-documentation/developer-api/currencies.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
