This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ReSharper disable All | |
using UIntSpan = System.Span<uint>; | |
using Lumina.Text; | |
using Lumina.Data; | |
using Lumina.Data.Structs.Excel; | |
using Lumina.Excel; | |
using Lumina.Excel.GeneratedSheets; | |
namespace Lumina.Excel.GeneratedSheets2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Text; | |
using Lumina.Data.Structs.Excel; | |
namespace Lumina.Generator.CodeGen; | |
public class ArrayGenerator : BaseGenerator | |
{ | |
public ArrayGenerator( Field field, List< ExcelColumnDefinition > columns, int startColumnIndex, int startOffset ) : base( field, columns, startColumnIndex, startOffset ) { } | |
public override void WriteFields( StringBuilder sb ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ReSharper disable All | |
using Lumina.Text; | |
using Lumina.Data; | |
using Lumina.Data.Structs.Excel; | |
using Lumina.Excel; | |
using Lumina.Excel.GeneratedSheets; | |
namespace Lumina.Excel.GeneratedSheets2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SpecialShop | |
fields: | |
- name: Name | |
- name: Item | |
type: array | |
count: 60 | |
fields: | |
- name: ReceiveCount | |
type: array | |
count: 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$ref": "#/definitions/Sheet", | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"sheet": { | |
"$ref": "#/definitions/Sheet" | |
} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type: sheet | |
name: Item | |
fields: | |
- name: Singular | |
- name: Plural | |
- name: Description | |
- name: Name | |
- name: Adjective | |
- name: PossessivePronoun | |
- name: StartsWithVowel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type: sheet | |
name: SpecialShop | |
fields: | |
- name: Name | |
- name: Item | |
type: array | |
count: 60 | |
fields: | |
- name: ReceiveCount | |
type: array |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sheet": "SpecialShop", | |
"defaultColumn": "Name", | |
"isGenericReferenceTarget": true, | |
"definitions": [ | |
{ | |
"name": "Name" | |
}, | |
{ | |
"index": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type: sheet | |
name: CustomTalk | |
fields: | |
- type: array | |
count: 30 | |
name: Define | |
fields: | |
- type: scalar | |
name: Name | |
- type: scalar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Dalamud.Game.Command; | |
using Dalamud.Plugin; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Numerics; | |
using System.Runtime.InteropServices; | |
using Dalamud.Data; | |
using Dalamud.Game; | |
using Dalamud.Utility; |
NewerOlder