fix spelling
This commit is contained in:
parent
56eafe3de2
commit
6dded3befe
|
@ -1 +1 @@
|
|||
PLATFORM=PLATFORM_WEB make -B && mv project_verne.* build/
|
||||
PLATFORM=PLATFORM_WEB make -B && rm -rf build/* && mv project_verne.* build/
|
|
@ -17,7 +17,7 @@ typedef struct Entity {
|
|||
unsigned char Prestidigitation;
|
||||
unsigned char Language;
|
||||
unsigned char Medicine;
|
||||
unsigned char Thaumitology;
|
||||
unsigned char Thaumatology;
|
||||
unsigned char Theology;
|
||||
unsigned char Fishing;
|
||||
unsigned char Mining;
|
||||
|
|
|
@ -107,10 +107,10 @@ class Entity {
|
|||
set Medicine(v) {
|
||||
return this._data.setUint8(40, v, true);
|
||||
}
|
||||
get Thaumitology() {
|
||||
get Thaumatology() {
|
||||
return this._data.getUint8(41, true);
|
||||
}
|
||||
set Thaumitology(v) {
|
||||
set Thaumatology(v) {
|
||||
return this._data.setUint8(41, v, true);
|
||||
}
|
||||
get Theology() {
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
"type": "u8",
|
||||
"kind": "scalar"
|
||||
},
|
||||
"Thaumitology": {
|
||||
"Thaumatology": {
|
||||
"type": "u8",
|
||||
"kind": "scalar"
|
||||
},
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
sqlite3 world.db < types.sql
|
|
@ -1,2 +1,2 @@
|
|||
CREATE TABLE Entity (entity_id INTEGER PRIMARY KEY AUTOINCREMENT, string TEXT, Strength INTEGER, Endurance INTEGER, Intelligence INTEGER, Wisdom INTEGER, Charisma INTEGER, Faith INTEGER, Artisan INTEGER, Metalworking INTEGER, Alchemy INTEGER, Engineering INTEGER, Culinary INTEGER, Ranged INTEGER, Melee INTEGER, Acrobatics INTEGER, Prestidigitation INTEGER, Language INTEGER, Medicine INTEGER, Thaumitology INTEGER, Theology INTEGER, Fishing INTEGER, Mining INTEGER, Survival INTEGER, Gardening INTEGER, History INTEGER, Perception INTEGER, Luck INTEGER, Stealth INTEGER, Attractiveness INTEGER, Affluence INTEGER, Notoriety INTEGER);
|
||||
CREATE TABLE Entity (entity_id INTEGER PRIMARY KEY AUTOINCREMENT, string TEXT, Strength INTEGER, Endurance INTEGER, Intelligence INTEGER, Wisdom INTEGER, Charisma INTEGER, Faith INTEGER, Artisan INTEGER, Metalworking INTEGER, Alchemy INTEGER, Engineering INTEGER, Culinary INTEGER, Ranged INTEGER, Melee INTEGER, Acrobatics INTEGER, Prestidigitation INTEGER, Language INTEGER, Medicine INTEGER, Thaumatology INTEGER, Theology INTEGER, Fishing INTEGER, Mining INTEGER, Survival INTEGER, Gardening INTEGER, History INTEGER, Perception INTEGER, Luck INTEGER, Stealth INTEGER, Attractiveness INTEGER, Affluence INTEGER, Notoriety INTEGER);
|
||||
|
||||
|
|
|
@ -113,7 +113,7 @@
|
|||
"type": "i32",
|
||||
"kind": "scalar"
|
||||
},
|
||||
"Thaumitology": {
|
||||
"Thaumatology": {
|
||||
"type": "i32",
|
||||
"kind": "scalar"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue