Skip to content

Instantly share code, notes, and snippets.

@BirdMachine
Last active November 26, 2021 03:16
Show Gist options
  • Save BirdMachine/74136f4e6c05b6bb41c6c658a3dca061 to your computer and use it in GitHub Desktop.
Save BirdMachine/74136f4e6c05b6bb41c6c658a3dca061 to your computer and use it in GitHub Desktop.
import Self from '/home/Birdie'
class Wood {
constructor(species, placement ) {
this.species = species;
this.placement = placement
}
imbue() {
Self.luck++
}
}
let This = new Wood("redMaple", Self.Body.Thigh("r").subdermal);
This.addEventListener("knock", This.imbue() );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment