Replaces partial EffectMgr.EffectType with all 226 decomp values; copies the IsNotNullOrEmpty/EquelsID/FindFromCardId/GetAllFuncVfxResults extension files + UI extensions; adds Renderer/MeshFilter shared-material/mesh/sortingOrder. Compile loop then closed the revealed deps (3242 files). 9.1k -> 18 errors.
42 lines
873 B
C#
42 lines
873 B
C#
namespace Wizard;
|
|
|
|
public class DeckLeaderSkinUpdateTask : BaseTask
|
|
{
|
|
private class Param : BaseParam
|
|
{
|
|
public int deck_no;
|
|
|
|
public int leader_skin_id;
|
|
|
|
public int deck_format;
|
|
}
|
|
|
|
private Format _updateDeckFormat;
|
|
|
|
public DeckLeaderSkinUpdateTask()
|
|
{
|
|
base.type = ApiType.Type.DeckLeaderSkinUpdate;
|
|
}
|
|
|
|
public void SetParameter(int deckNo, int leaderSkinId, Format format)
|
|
{
|
|
Param param = new Param();
|
|
param.deck_no = deckNo;
|
|
param.leader_skin_id = leaderSkinId;
|
|
param.deck_format = Data.FormatConvertApi(format);
|
|
base.Params = param;
|
|
_updateDeckFormat = format;
|
|
}
|
|
|
|
protected override int Parse()
|
|
{
|
|
int num = base.Parse();
|
|
if (num != 1)
|
|
{
|
|
return num;
|
|
}
|
|
DeckListUtility.DeckUpdate(base.ResponseData["data"]["user_deck"], _updateDeckFormat, DeckAttributeType.CustomDeck);
|
|
return num;
|
|
}
|
|
}
|