asura-api
v1.0.0
Published
a public api for the game asura online by the official asura team
Maintainers
Readme
Asura Online Public API Package
Public asura online api npm package made by the official asura team.
how to use?
npm i asura-api --save
sample code
const asura = require('asura-api');
const api = new asura();
(async() => {
const playerData = await api.getPlayerData('<player name>');
console.log(playerData);
/*
{
name: 'Example',
level: 1,
hp: 20,
mp: 20,
gold: 2000000,
skill_points: 0,
title: null
}
*/
})();