Skip to content

Instantly share code, notes, and snippets.

View YastMe's full-sized avatar

YastMe YastMe

  • 42 Málaga
  • 21:19 (UTC +01:00)
  • X @yastme
View GitHub Profile
@YastMe
YastMe / macro.js
Last active February 22, 2025 10:31
Import Path of War disciplines, maneuvers, feats and traits to Foundry VTT
(async () => {
const response = await fetch("https://poh.yastme.com/foundry/data/", {
method: "GET",
headers: {
"Content-Type": "application/json",
},
});
const data = await response.json();
async function importData() {