Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GigaExcalibur committed Mar 19, 2023
1 parent b73e12d commit e85529c
Show file tree
Hide file tree
Showing 4,868 changed files with 256,300 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
24 changes: 24 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# Auto detect text files and perform LF normalization
* text=auto

*.event text
*.txt text
*.s text
*.asm text
*.nmm text
*.csv text
*.bat text
*.log text

# Custom for Visual Studio
*.cs diff=csharp

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
68 changes: 68 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# rom stuff
*.gba
*.ups
*.sav
*.sgm
*.ss1
*.ss2
*.ss3
*.ss4
*.ss5
*.ss6
*.ss7
*.ss8
*.ss9
*.sym
/*.png
!Tools/sym/*.sym

# python cache
__pycache__

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
47 changes: 47 additions & 0 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
Note: This list is incomplete and insufficiently organized. If you contributed
something that you'd like special recognition for, please make a pull request
adding yourself!

# Skill contributors

- circleseverywhere
- Tequila
- Colorz
- Rossendale
- StanH
- Leonarth
- 2WB
- Teraspark
- Darrman
- SD9k
- Kao
- blademaster
- Snakey1
- Zeta
- Kirb
- Sme
- Ganzap
- Mikey Seregon
- Vesly
- Dragz

# Other

- 7743: various bugfixes
- RobertFPY, Pikmin1211, and Snakey1: Str/Mag Split Finalization

# Graphics

- Monkeybard, Black Mage
- Blaze: Stances
- vlak: Drives
- Pikmin1211: Miscellaneous
- 2WB: Miscellaneous
- Someone: Taker, Hone, Oath, Rouse, Guts, Strong Con, Rally Chaos, Hoarders Bane, Shrewd Potential, Eternal Vanity
- Alice: Dancing/Heavy Blade, Dark Bargain, Soul Sap
- VelvetKitsune: Initiative
- Zaim: Indoor March
- Reds: Quick Riposte
- Dragz: Divinely Inspiring
- circleseverywhere: Skill Animations

44 changes: 44 additions & 0 deletions CustomDefinitions.event
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#define FreeSpace 0xb2a610
#define FreeSpaceEnd 0xC00000
#define FreeSpaceBLRange 0x1c1ec0

#define ChapterTileset(chapter, object, palette, config) "PUSH; ORG 0x8b0890 + (148* chapter) + 4; SHORT object; BYTE palette config; POP"
#define ChapterTileAnims(chapter, anim1, anim2) "PUSH; ORG 0x8b0890 + (148* chapter) + 9; BYTE anim1 anim2; POP"

#ifndef ItemTable
#define ItemTable 0x809B10
#endif

#ifndef DebuffTableRam
#define DebuffTableRam 0x0203F100
#define DebuffTableSize 0x00000440
#endif

#ifndef ChapterDataTable
#define ChapterDataTable 0x8B0890
#define ChapterDataTableEntSize 148
#endif

#define LunarBrace MoonBracelet
#define SolarBrace SunBracelet

// Attribute for defining items with passive stat bonuses
#define PASSIVE_ITEM_BOOSTS_ATTR 0x00800000

// Attribute for defining items with passive skills
#define PASSIVE_ITEM_SKILL_ATTR 0x00800000

// this is for if you use the legacy way of define item attributes in your table (this is for byte 3)
#define PassiveBoosts 0x80

#define StatBonus(HPB,StrB,MagB,SklB,SpdB,DefB,ResB,LckB,MovB,ConB) "BYTE HPB StrB SklB SpdB DefB ResB LckB MovB ConB MagB 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0"

#define GrowthBonus(HPB,StrB,MagB,SklB,SpdB,DefB,ResB,LckB) "BYTE 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 HPB StrB SklB SpdB DefB ResB LckB MagB 0x0 0x0"

//item ID for skill scroll
#define SkillScroll 0xBC

#include "EngineHacks/SkillSystem/skill_definitions.event"

// #define __DEBUG__ // Uncomment to get the Debug startup menu :p

Loading

0 comments on commit e85529c

Please sign in to comment.